diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-02-05 00:21:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-02-05 00:21:43 +0000 |
commit | a71433e7fd0263a1dbac7a9b88067e4830382486 (patch) | |
tree | 7e19d61caa3a7f16c63ac637fc23d32a2f61e4f6 /sysdeps | |
parent | 82f2e9c6bd8a02b6b5d90239f0f683407a5a7d10 (diff) | |
download | glibc-a71433e7fd0263a1dbac7a9b88067e4830382486.tar.gz glibc-a71433e7fd0263a1dbac7a9b88067e4830382486.tar.xz glibc-a71433e7fd0263a1dbac7a9b88067e4830382486.zip |
* sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (struct sigevent):
Add _tid slot to maintain consistency with kernel.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/bits/siginfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h b/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h index 7ff1971c2a..c0f98f6072 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h @@ -289,6 +289,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. */ |