fsevents: increase stack size for OSX 10.9

Otherwise it fails with `EXC_BAD_ACCESS`.
This commit is contained in:
Fedor Indutny 2013-10-23 12:44:16 +04:00
parent 9ab5ee2f39
commit 0fdd99f02b

View File

@ -552,7 +552,7 @@ static int uv__fsevents_loop_init(uv_loop_t* loop) {
attr = NULL;
if (attr != NULL)
if (pthread_attr_setstacksize(attr, 3 * PTHREAD_STACK_MIN))
if (pthread_attr_setstacksize(attr, 4 * PTHREAD_STACK_MIN))
abort();
loop->cf_state = state;