Commit 2faf2a30 by Ian Lance Taylor

syscall: don't assume that WIFCONTINUED is defined

    
    It's not defined on the Hurd.
    
    Reviewed-on: https://go-review.googlesource.com/c/161963

From-SVN: r268828
parent d950b005
fc8aa5a46433d6ecba9fd1cd0bee4290c314ca06 6d03c4c8ca320042bd550d44c0f25575c5311ac2
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.
...@@ -16,6 +16,10 @@ ...@@ -16,6 +16,10 @@
#define WCOREDUMP(status) (((status) & 0200) != 0) #define WCOREDUMP(status) (((status) & 0200) != 0)
#endif #endif
#ifndef WIFCONTINUED
#define WIFCONTINUED(x) 0
#endif
extern _Bool Exited (uint32_t *w) extern _Bool Exited (uint32_t *w)
__asm__ (GOSYM_PREFIX "syscall.WaitStatus.Exited"); __asm__ (GOSYM_PREFIX "syscall.WaitStatus.Exited");
......
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