Don't use EAGAIN as it's not used and requires missing cerrno

[SVN r86089]
This commit is contained in:
Ion Gaztañaga
2013-09-30 21:01:45 +00:00
parent aa6dd59f3b
commit 5565248b45

View File

@@ -491,7 +491,7 @@ inline int thread_create( OS_thread_t * thread, unsigned (__stdcall * start_rout
return 0;
}
else{
return EAGAIN;
return 1;
}
}