X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fthreads-conf.c;h=15901e9726744c5c6415fc7831c4a7fdff4fd878;hb=a6368763d08042207963c941b1c52b5fafcb0cb3;hp=68abbdae95de9ad5ca035abf90b1141d2cebb1f8;hpb=5125afc819f831bd8a77ea144b2bba49a9528a97;p=libucw.git diff --git a/ucw/threads-conf.c b/ucw/threads-conf.c index 68abbdae..15901e97 100644 --- a/ucw/threads-conf.c +++ b/ucw/threads-conf.c @@ -11,16 +11,16 @@ #include #include -uns ucwlib_thread_stack_size = 65556; +uint ucwlib_thread_stack_size = 65556; static struct cf_section threads_config = { CF_ITEMS { - CF_UNS("DefaultStackSize", &ucwlib_thread_stack_size), + CF_UINT("DefaultStackSize", &ucwlib_thread_stack_size), CF_END } }; -static void CONSTRUCTOR_WITH_PRIORITY(19999) +static void CONSTRUCTOR ucwlib_threads_conf_init(void) { cf_declare_section("Threads", &threads_config, 0);