remove special-casing of OS X and Linux for thread stack size

There doesn't seem to be a reason for the special case other than
history.
This commit is contained in:
Matthew Flatt 2015-03-12 10:26:21 -06:00
parent a5be431a74
commit 7f5ed17222

View File

@ -267,8 +267,6 @@ mz_proc_thread* mz_proc_thread_create(mz_proc_thread_start start_proc, void* dat
stacksize = UNIX_STACK_MAXIMUM;
# endif
}
#elif defined(OS_X) || defined(linux)
stacksize = 8*1024*1024;
#else
stacksize = 0;
#endif