Lely core libraries  2.2.5
fiber.h
Go to the documentation of this file.
1 
23 #ifndef LELY_UTIL_INTERN_FIBER_H_
24 #define LELY_UTIL_INTERN_FIBER_H_
25 
26 #include "util.h"
27 
28 #ifndef LELY_FIBER_MINSTKSZ
29 #ifdef MINSIGSTKSZ
31 #define LELY_FIBER_MINSTKSZ MINSIGSTKSZ
32 #elif __WORDSIZE == 64
33 #define LELY_FIBER_MINSTKSZ 8192
34 #else
35 #define LELY_FIBER_MINSTKSZ 4096
36 #endif
37 #endif
38 
39 #ifndef LELY_FIBER_STKSZ
40 #define LELY_FIBER_STKSZ 131072
42 #endif
43 
44 #endif // !LELY_UTIL_INTERN_FIBER_H_
util.h