aboutsummaryrefslogtreecommitdiff
path: root/tests/cris/check_sigalrm.c
blob: 39fa8d9bacd42480f69bb753bdd04e63d109d82e (plain)
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
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>

#define MAGIC (0xdeadbeef)

int s = 0;
void sighandler(int sig)
{
	s = MAGIC;
}

int main(int argc, char **argv)
{
	int p;

	p = getpid();
	signal(SIGALRM, sighandler);
	kill(p, SIGALRM);
	if (s != MAGIC)
		return EXIT_FAILURE;

	printf ("passed\n");
	return EXIT_SUCCESS;
}