1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/* $OpenBSD: signodefer.c,v 1.2 2002/10/23 22:30:04 marc Exp $ */
/* PUBLIC DOMAIN Oct 2002 <marc@snafu.org> */
/*
* test signal delivery of active signals (SA_NODEFER)
*/
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include "test.h"
volatile sig_atomic_t sigactive;
volatile sig_atomic_t sigcount;
volatile sig_atomic_t was_active;
void
act_handler(int signal, siginfo_t *siginfo, void *context)
{
char *str;
/* how many times has the handler been called */
was_active += sigactive++;
sigcount += 1;
/* verify siginfo since we asked for it. */
ASSERT(siginfo != NULL);
asprintf(&str,
"%sact_handler/%d, signal %d, siginfo %p, context %p\n",
was_active ? "[recurse] " : "",
sigcount, signal, siginfo, context);
CHECKe(write(STDOUT_FILENO, str, strlen(str)));
/* Odd times entered send ourself the same signal */
if (sigcount & 1)
CHECKe(kill(getpid(), SIGUSR1));
sigactive = 0;
}
int
main(int argc, char **argv)
{
struct sigaction act;
act.sa_sigaction = act_handler;
sigemptyset(&act.sa_mask);
act.sa_flags = SA_SIGINFO;
ASSERT(sigaction(SIGUSR1, &act, NULL) == 0);
/* see if the signal handler recurses */
CHECKe(kill(getpid(), SIGUSR1));
sleep(1);
ASSERT(was_active == 0);
/* allow recursive handlers, see that it is handled right */
act.sa_flags |= SA_NODEFER;
ASSERT(sigaction(SIGUSR1, &act, NULL) == 0);
/* see if the signal handler recurses */
CHECKe(kill(getpid(), SIGUSR1));
sleep(1);
ASSERT(was_active == 1);
SUCCEED;
}
|