diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2009-10-18 11:58:43 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-10-18 12:40:30 +0200 |
commit | 3ab8fd5f5029cd3764848f90dad54ebc495cf13d (patch) | |
tree | 02ce4de3d3a04519ba67485fb98778f066058347 | |
parent | 9febf21f63f44e945b023bad1d0cef1f86db83f7 (diff) |
This is not SA_SIGINFO.
* tests/test-16.c (handler): Remove `info' and `context' arguments.
-rw-r--r-- | tests/test-16.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-16.c b/tests/test-16.c index c4030ae..2cf1c51 100644 --- a/tests/test-16.c +++ b/tests/test-16.c @@ -33,7 +33,7 @@ test (void *arg) } static void -handler (int sig, siginfo_t *info, void *context) +handler (int sig) { assert (pthread_equal (pthread_self (), testthread)); printf ("handler: %d\n", pthread_self ()); |