X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsorter%2Fconfig.c;h=6f6e94274dff5fae472fd2a950a67b09e7dfcd3a;hb=1f1ccf1786a62973de953e3f5c43392ad485770d;hp=a4bfc67bf90fb5bbf0698aa44803f887f5b16e95;hpb=3829629ad52c0dbea8a8127a6b726b5d9b0b9c5b;p=libucw.git diff --git a/lib/sorter/config.c b/lib/sorter/config.c index a4bfc67b..6f6e9427 100644 --- a/lib/sorter/config.c +++ b/lib/sorter/config.c @@ -21,6 +21,8 @@ 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 = { @@ -35,6 +37,8 @@ static struct cf_section sorter_config = { 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 } };