X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Finit.c;h=fee9aade5310fdf1b7b287d71273fa53a10339ae;hb=966a43ffed492d387e0d75e56c3984d9001c15b1;hp=eb2515c8ae790a6c08afbae2ccc3675b68ae4a1e;hpb=de946bbcea4c0bc0c92a858eae4d5c668e923c83;p=bluesky.git diff --git a/bluesky/init.c b/bluesky/init.c index eb2515c..fee9aad 100644 --- a/bluesky/init.c +++ b/bluesky/init.c @@ -13,6 +13,8 @@ #include "bluesky-private.h" +int bluesky_verbose = 0; + BlueSkyOptions bluesky_options; /* Maximum number of threads to use in any particular thread pool, or -1 for no @@ -32,6 +34,10 @@ int bluesky_watermark_low_dirty = (64 << 20) / BLUESKY_BLOCK_SIZE; int bluesky_watermark_medium_dirty = (96 << 20) / BLUESKY_BLOCK_SIZE; int bluesky_watermark_high_dirty = (192 << 20) / BLUESKY_BLOCK_SIZE; +int bluesky_watermark_low_total = (64 << 20) / BLUESKY_BLOCK_SIZE; +int bluesky_watermark_medium_total = (128 << 20) / BLUESKY_BLOCK_SIZE; +int bluesky_watermark_high_total = (256 << 20) / BLUESKY_BLOCK_SIZE; + /* Environment variables that can be used to initialize settings. */ static struct { const char *env;