kopia lustrzana https://gitlab.com/sane-project/backends
Increased stacksize for thread. Patch from Franz Bakan <fbakan@gmx.net>.
rodzic
293a629d7c
commit
8ea8fe0223
|
@ -5,6 +5,8 @@
|
||||||
crossing 64k borders due to restrictions of 16-bit device-driver.
|
crossing 64k borders due to restrictions of 16-bit device-driver.
|
||||||
Cosmetic changes and some casts to reduce compiler-warnings. Patch
|
Cosmetic changes and some casts to reduce compiler-warnings. Patch
|
||||||
from Franz Bakan <fbakan@gmx.net>.
|
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>
|
2003-03-10 Oliver Schirrmeister <oschirr@abm.de>
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ int
|
||||||
sanei_thread_begin( void (*start)(void *arg),
|
sanei_thread_begin( void (*start)(void *arg),
|
||||||
void* arg_list)
|
void* arg_list)
|
||||||
{
|
{
|
||||||
return _beginthread( start, NULL, 64*1024, arg_list);
|
return _beginthread( start, NULL, 1024*1024, arg_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Ładowanie…
Reference in New Issue