runtime: If O_CLOEXEC is not defined, define it as 0.
authorIan Lance Taylor <ian@gcc.gnu.org>
Tue, 29 Nov 2011 19:26:00 +0000 (19:26 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Tue, 29 Nov 2011 19:26:00 +0000 (19:26 +0000)
From-SVN: r181814

libgo/runtime/thread-linux.c

index b51f497..c08cc0d 100644 (file)
@@ -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)
 {