Add a new option to make caching writethrough instead of writeback.
[bluesky.git] / bluesky / bluesky.h
index f147088..59814b1 100644 (file)
@@ -21,6 +21,9 @@ extern "C" {
 typedef struct {
     /* Perform all get/put operations synchronously. */
     int synchronous_stores;
+
+    /* Write data in cache immediately after file is modified. */
+    int writethrough_cache;
 } BlueSkyOptions;
 
 extern BlueSkyOptions bluesky_options;