Commit 421ecf99 by Ian Lance Taylor

runtime: If O_CLOEXEC is not defined, define it as 0.

From-SVN: r181814
parent 8afa2bfb
......@@ -62,6 +62,10 @@ runtime_futexwakeup(uint32 *addr, uint32 cnt)
*(int32*)0x1006 = 0x1006;
}
#ifndef O_CLOEXEC
#define O_CLOEXEC 0
#endif
static int32
getproccount(void)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment