Skip to content
Snippets Groups Projects
Commit a7fe014a authored by deuce's avatar deuce
Browse files

Fix stack overflow in JS on FreeBSD - s3 shell now runs.

You were right DigitalMan (again)
parent c345d8f0
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,12 @@ ulong _beginthread(void( *start_address )( void * )
/* set thread attributes to PTHREAD_CREATE_DETACHED which will ensure
that thread resources are freed on exit() */
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
#ifdef __FreeBSD__
/* Default stack size in FreeBSD is too small for JS stuff */
pthread_attr_setstacksize(&attr, (1<<17));
#endif
if(pthread_create(&thread
#if defined(__BORLANDC__) /* a (hopefully temporary) work-around */
,NULL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment