bug 550138 - default thread size is too big r=dougt

This commit is contained in:
Brad Lassey 2010-03-11 12:28:48 -05:00
Родитель 9b7638ecd7
Коммит e15f0facc2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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)