bug 550138 - default thread size is too big r=dougt
This commit is contained in:
Родитель
9b7638ecd7
Коммит
e15f0facc2
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
#define _beginthreadex(security, stack_size, start_proc, arg, flags, pid) \
|
#define _beginthreadex(security, stack_size, start_proc, arg, flags, pid) \
|
||||||
CreateThread(security, stack_size,(LPTHREAD_START_ROUTINE) start_proc, arg, flags, pid)
|
CreateThread(security, stack_size ? stack_size : 65536L,(LPTHREAD_START_ROUTINE) start_proc, arg, flags | STACK_SIZE_PARAM_IS_A_RESERVATION, pid)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче