summaryrefslogblamecommitdiff
path: root/arch/i386/bits/wexitstatus.h
blob: 591d401a1b01c2a4acaf8dc2d7d10879bfc7f3a8 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                            

                                                                    
      
#ifndef WEXITSTATUS
#define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
#define WTERMSIG(s) ((s) & 0x7f)
#define WSTOPSIG(s) WEXITSTATUS(s)
#define WCOREDUMP(s) ((s) & 0x80)
#define WIFEXITED(s) (!WTERMSIG(s))
#define WIFSTOPPED(s) (((s) & 0xff) == 0x7f)
#define WIFSIGNALED(s) (((signed char) (((s) & 0x7f) + 1) >> 1) > 0)
#define WIFCONTINUED(s) ((s) == 0xffff)
#endif