提交 ba8a96b0 编写于 作者: R Rich Felker

more mips bits-header fixes

signal handling was very broken because of this
上级 db11e964
...@@ -19,14 +19,18 @@ typedef struct __ucontext { ...@@ -19,14 +19,18 @@ typedef struct __ucontext {
} ucontext_t; } ucontext_t;
#define SA_NOCLDSTOP 1 #define SA_NOCLDSTOP 1
#define SA_NOCLDWAIT 2 #define SA_NOCLDWAIT 0x10000
#define SA_SIGINFO 4 #define SA_SIGINFO 8
#define SA_ONSTACK 0x08000000 #define SA_ONSTACK 0x08000000
#define SA_RESTART 0x10000000 #define SA_RESTART 0x10000000
#define SA_NODEFER 0x40000000 #define SA_NODEFER 0x40000000
#define SA_RESETHAND 0x80000000 #define SA_RESETHAND 0x80000000
#define SA_RESTORER 0x04000000 #define SA_RESTORER 0x04000000
#define SIG_BLOCK 1
#define SIG_UNBLOCK 2
#define SIG_SETMASK 3
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
struct sigcontext struct sigcontext
{ {
......
...@@ -28,9 +28,11 @@ extern "C" { ...@@ -28,9 +28,11 @@ extern "C" {
#define SIG_HOLD ((void (*)(int)) 2) #define SIG_HOLD ((void (*)(int)) 2)
#ifndef SIG_BLOCK
#define SIG_BLOCK 0 #define SIG_BLOCK 0
#define SIG_UNBLOCK 1 #define SIG_UNBLOCK 1
#define SIG_SETMASK 2 #define SIG_SETMASK 2
#endif
#define SI_ASYNCNL (-60) #define SI_ASYNCNL (-60)
#define SI_TKILL (-6) #define SI_TKILL (-6)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册