Increased stacksize for thread. Patch from Franz Bakan <fbakan@gmx.net>.

merge-requests/1/head
Henning Geinitz 2003-03-16 11:05:11 +00:00
rodzic 293a629d7c
commit 8ea8fe0223
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -5,6 +5,8 @@
crossing 64k borders due to restrictions of 16-bit device-driver.
Cosmetic changes and some casts to reduce compiler-warnings. Patch
from Franz Bakan <fbakan@gmx.net>.
* sanei/sanei_thread.c: Increased stacksize for thread. Patch from
Franz Bakan <fbakan@gmx.net>.
2003-03-10 Oliver Schirrmeister <oschirr@abm.de>

Wyświetl plik

@ -69,7 +69,7 @@ int
sanei_thread_begin( void (*start)(void *arg),
void* arg_list)
{
return _beginthread( start, NULL, 64*1024, arg_list);
return _beginthread( start, NULL, 1024*1024, arg_list);
}
int