]> sigrok.org Git - libsigrok.git/commitdiff
Make DATASTORE_CHUNKSIZE private.
authorUwe Hermann <redacted>
Tue, 22 Feb 2011 17:08:41 +0000 (18:08 +0100)
committerUwe Hermann <redacted>
Thu, 3 Mar 2011 19:24:24 +0000 (20:24 +0100)
datastore.c
session_file.c
sigrok-internal.h
sigrok.h

index c7ace06faee0b104addce464750b2c4d044f6e4a..7f35ee5aae5b343101d579be4d6ea1ef03169e73 100644 (file)
@@ -22,6 +22,7 @@
 #include <string.h>
 #include <glib.h>
 #include <sigrok.h>
+#include <sigrok-internal.h>
 
 static gpointer new_chunk(struct sr_datastore **ds);
 
index 4d70b3514e92404dc49e7c9fa78271f0a78c918f..c8939e5f300b6a4c4f885314f7afa1f8f87d56e4 100644 (file)
 #include <glib.h>
 #include <glib/gstdio.h>
 #include <sigrok.h>
+#include <sigrok-internal.h>
 
 extern struct sr_session *session;
 extern struct sr_device_plugin session_driver;
 
-
 int sr_session_load(const char *filename)
 {
        GKeyFile *kf;
@@ -242,4 +242,3 @@ int sr_session_save(const char *filename)
 
        return SR_OK;
 }
-
index a5326d2b9f57304ca85e82e7b77e09b0bbc52a8b..4aeae18e4cdd904b0edb97517b6dcb24c79b3f96 100644 (file)
@@ -30,6 +30,9 @@
 #define ARRAY_AND_SIZE(a) (a), ARRAY_SIZE(a)
 #endif
 
+/* Size of a datastore chunk in units */
+#define DATASTORE_CHUNKSIZE 512000
+
 /*--- hwplugin.c ------------------------------------------------------------*/
 
 int load_hwplugins(void);
index db747075fc6fb75ddb4fe54b98eaeaa94f9a7a49..9109201d51df6e04079c0db4bda484b449345ee0 100644 (file)
--- a/sigrok.h
+++ b/sigrok.h
@@ -164,9 +164,6 @@ struct sr_analyzer {
         */
 };
 
-/* Size of a chunk in units */
-#define DATASTORE_CHUNKSIZE 512000
-
 struct sr_datastore {
        /* Size in bytes of the number of units stored in this datastore */
        int ds_unitsize;