Commit 76a3be95 authored by Geoffroy Couprie's avatar Geoffroy Couprie

WinCE: reduce stack size

parent bce706f4
...@@ -723,7 +723,7 @@ int vlc_clone (vlc_thread_t *p_handle, void * (*entry) (void *), void *data, ...@@ -723,7 +723,7 @@ int vlc_clone (vlc_thread_t *p_handle, void * (*entry) (void *), void *data,
free(th); free(th);
return errno; return errno;
} }
hThread = CreateThread (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL); hThread = CreateThread (NULL, 128*1024, vlc_entry, th, CREATE_SUSPENDED, NULL);
#else #else
hThread = (HANDLE)(uintptr_t) hThread = (HANDLE)(uintptr_t)
_beginthreadex (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL); _beginthreadex (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment