fsevents: increase stack size for OSX 10.9
Otherwise it fails with `EXC_BAD_ACCESS`.
This commit is contained in:
parent
9ab5ee2f39
commit
0fdd99f02b
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user