[vlc-devel] commit: WinCE: reduce stack size (Geoffroy Couprie )

git version control git at videolan.org
Tue Jan 27 18:32:46 CET 2009


vlc | branch: master | Geoffroy Couprie <geo.couprie at gmail.com> | Tue Jan 27 18:19:49 2009 +0100| [76a3be959e0e9b63e912d57ae869ee87f7b75711] | committer: Geoffroy Couprie 

WinCE: reduce stack size

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=76a3be959e0e9b63e912d57ae869ee87f7b75711
---

 src/misc/threads.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/misc/threads.c b/src/misc/threads.c
index 97fa5de..1be52c8 100644
--- a/src/misc/threads.c
+++ b/src/misc/threads.c
@@ -723,7 +723,7 @@ int vlc_clone (vlc_thread_t *p_handle, void * (*entry) (void *), void *data,
         free(th);
         return errno;
     }
-    hThread = CreateThread (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL);
+    hThread = CreateThread (NULL, 128*1024, vlc_entry, th, CREATE_SUSPENDED, NULL);
 #else
     hThread = (HANDLE)(uintptr_t)
         _beginthreadex (NULL, 0, vlc_entry, th, CREATE_SUSPENDED, NULL);




More information about the vlc-devel mailing list