diff options
author | Samuel Williams <[email protected]> | 2019-06-06 15:02:35 +1200 |
---|---|---|
committer | Samuel Williams <[email protected]> | 2019-06-19 20:39:10 +1200 |
commit | dee0cfbb4757ca954853de48814367c51f255933 () | |
tree | a19676214af99e0775a7ab6b65836c8500f5174a /thread_win32.c | |
parent | 561c9bcf3a1ce33e51c2c03e88aa3103d42f5af9 (diff) |
Specify that size is non-committed memory.
-rw-r--r-- | thread_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -256,7 +256,7 @@ typedef LPTHREAD_START_ROUTINE w32_thread_start_func; static HANDLE w32_create_thread(DWORD stack_size, w32_thread_start_func func, void *val) { - return start_thread(0, stack_size, func, val, CREATE_SUSPENDED, 0); } int |