fix(core): update

This commit is contained in:
Philipp Kunz 2019-11-23 22:22:05 +00:00
parent 96c116b0b5
commit 7ce81d1a7c

View File

@ -18,7 +18,7 @@ int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_
pthread_attr_init(&local);
attr = &local;
}
pthread_attr_setstacksize((void*)attr, 10 * 1024 * 1024); // 2 MB
pthread_attr_setstacksize((void*)attr, 2 * 1024 * 1024); // 2 MB
func_t orig = (func_t)dlsym(RTLD_NEXT, "pthread_create");