2 * The UCW Library -- Threading Helpers
4 * (c) 2006 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
11 #include <ucw/threads.h>
14 uns ucwlib_thread_stack_size = 65556;
16 static struct cf_section threads_config = {
18 CF_UNS("DefaultStackSize", &ucwlib_thread_stack_size),
23 static void CONSTRUCTOR
24 ucwlib_threads_conf_init(void)
26 cf_declare_section("Threads", &threads_config, 0);