]> mj.ucw.cz Git - libucw.git/blobdiff - lib/sorter/config.c
Updated all users of the timer interface to pass an explicit timer context.
[libucw.git] / lib / sorter / config.c
index b1504047d5c576e1136ef05267cbaa3368812934..60dca3dae6507923b10b57dfb29f2c04af84142c 100644 (file)
@@ -16,6 +16,9 @@ uns sorter_trace;
 uns sorter_presort_bufsize = 65536;
 uns sorter_stream_bufsize = 65536;
 u64 sorter_bufsize = 65536;
+uns sorter_debug;
+uns sorter_min_radix_bits;
+uns sorter_max_radix_bits;
 
 static struct cf_section sorter_config = {
   CF_ITEMS {
@@ -23,6 +26,9 @@ static struct cf_section sorter_config = {
     CF_UNS("PresortBuffer", &sorter_presort_bufsize),
     CF_UNS("StreamBuffer", &sorter_stream_bufsize),
     CF_U64("SortBuffer", &sorter_bufsize),
+    CF_UNS("Debug", &sorter_debug),
+    CF_UNS("MinRadixBits", &sorter_min_radix_bits),
+    CF_UNS("MaxRadixBits", &sorter_max_radix_bits),
     CF_END
   }
 };