diff options
| -rw-r--r-- | libc/sysdeps/linux/ia64/bits/siginfo.h | 4 | ||||
| -rw-r--r-- | libc/sysdeps/linux/mips/bits/siginfo.h | 4 | ||||
| -rw-r--r-- | libc/sysdeps/linux/sparc/bits/siginfo.h | 4 | 
3 files changed, 12 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/ia64/bits/siginfo.h b/libc/sysdeps/linux/ia64/bits/siginfo.h index f571f469a..82cc73fdb 100644 --- a/libc/sysdeps/linux/ia64/bits/siginfo.h +++ b/libc/sysdeps/linux/ia64/bits/siginfo.h @@ -309,6 +309,10 @@ typedef struct sigevent        {  	int _pad[__SIGEV_PAD_SIZE]; +	/* When SIGEV_SIGNAL and SIGEV_THREAD_ID set, LWP ID of the +	   thread to receive the signal.  */ +	__pid_t _tid; +  	struct  	  {  	    void (*_function) (sigval_t);	/* Function to start.  */ diff --git a/libc/sysdeps/linux/mips/bits/siginfo.h b/libc/sysdeps/linux/mips/bits/siginfo.h index 79fb15a7b..84b08cad7 100644 --- a/libc/sysdeps/linux/mips/bits/siginfo.h +++ b/libc/sysdeps/linux/mips/bits/siginfo.h @@ -281,6 +281,10 @@ typedef struct sigevent        {  	int _pad[__SIGEV_PAD_SIZE]; +	/* When SIGEV_SIGNAL and SIGEV_THREAD_ID set, LWP ID of the +	   thread to receive the signal.  */ +	__pid_t _tid; +  	struct  	  {  	    void (*_function) (sigval_t);	/* Function to start.  */ diff --git a/libc/sysdeps/linux/sparc/bits/siginfo.h b/libc/sysdeps/linux/sparc/bits/siginfo.h index 6f2d03572..3ffeb6dcf 100644 --- a/libc/sysdeps/linux/sparc/bits/siginfo.h +++ b/libc/sysdeps/linux/sparc/bits/siginfo.h @@ -288,6 +288,10 @@ typedef struct sigevent        {  	int _pad[__SIGEV_PAD_SIZE]; +	/* When SIGEV_SIGNAL and SIGEV_THREAD_ID set, LWP ID of the +	   thread to receive the signal.  */ +	__pid_t _tid; +  	struct  	  {  	    void (*_function) (sigval_t);	/* Function to start.  */  | 
