Changed: Use a stack size of 1 MiB under all platforms for CCoTask (default under Windows)

This commit is contained in:
kervala 2015-12-23 15:10:06 +01:00
parent ab67c892bb
commit 68f4628282

View file

@ -28,8 +28,8 @@ namespace NLMISC
# define NL_WIN_CALLBACK # define NL_WIN_CALLBACK
#endif #endif
// Default to 8KB stack for tasks // Default to 1MiB stack for tasks
const unsigned int NL_TASK_STACK_SIZE = 8*1024; const uint NL_TASK_STACK_SIZE = 1024*1024;
// forward def for platform specific data // forward def for platform specific data
struct TCoTaskData; struct TCoTaskData;