Skip to content
Snippets Groups Projects
Commit f45f66be authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Commented out large stack init now that thread stacks are at least 1Mb.

parent c9afc46e
No related branches found
No related tags found
No related merge requests found
......@@ -298,8 +298,10 @@ void SYSDEPS_SwitchToThreadStack( void (*func)(void) )
teb->stack_top = (LPVOID) cur_stack;
teb->stack_low = (LPVOID)(cur_stack - rl.rlim_cur);
#if 0
SYSDEPS_LargeStackTop = (LPVOID)(cur_stack - 2*page_size);
SYSDEPS_LargeStackLow = (LPVOID)(cur_stack - rl.rlim_cur);
#endif
SYSDEPS_CallOnStack( stackTop, stackLow,
(int (*)(void *))func, NULL );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment