]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/threads-conf.c
Opt: Documented opt and its interaction with conf
[libucw.git] / ucw / threads-conf.c
index 368201049e951a8a356e9d2b18a07f50bae5a9a1..b96f867f5869853e2cdd4cc2cb60b01990e2ee18 100644 (file)
@@ -7,15 +7,15 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/threads.h"
-#include "ucw/conf.h"
+#include <ucw/lib.h>
+#include <ucw/threads.h>
+#include <ucw/conf.h>
 
-uns default_thread_stack_size = 65556;
+uns ucwlib_thread_stack_size = 65556;
 
 static struct cf_section threads_config = {
   CF_ITEMS {
-    CF_UNS("DefaultStackSize", &default_thread_stack_size),
+    CF_UNS("DefaultStackSize", &ucwlib_thread_stack_size),
     CF_END
   }
 };