]> mj.ucw.cz Git - libucw.git/blobdiff - lib/sorter/config.c
Shaved off a couple of items from the TODO.
[libucw.git] / lib / sorter / config.c
index 8708f7e457eb1df0669c6bdba8d411e3bca9032c..6f6e94274dff5fae472fd2a950a67b09e7dfcd3a 100644 (file)
@@ -19,6 +19,10 @@ u64 sorter_bufsize = 65536;
 uns sorter_debug;
 uns sorter_min_radix_bits;
 uns sorter_max_radix_bits;
+uns sorter_min_multiway_bits;
+uns sorter_max_multiway_bits;
+uns sorter_threads;
+uns sorter_thread_threshold;
 struct fb_params sorter_fb_params;
 
 static struct cf_section sorter_config = {
@@ -31,6 +35,10 @@ static struct cf_section sorter_config = {
     CF_UNS("Debug", &sorter_debug),
     CF_UNS("MinRadixBits", &sorter_min_radix_bits),
     CF_UNS("MaxRadixBits", &sorter_max_radix_bits),
+    CF_UNS("MinMultiwayBits", &sorter_min_multiway_bits),
+    CF_UNS("MaxMultiwayBits", &sorter_max_multiway_bits),
+    CF_UNS("Threads", &sorter_threads),
+    CF_UNS("ThreadThreshold", &sorter_thread_threshold),
     CF_END
   }
 };