summaryrefslogtreecommitdiffstats
path: root/tests/exp/blocksig.c
blob: 13b55e7fce09dc31a0657722042d3a371f289619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <signal.h>
#include <unistd.h>

int main(int argc, char **argv)
{
	sigset_t new_sig, old_sig;

	sigfillset(&new_sig);
	sigprocmask(SIG_SETMASK, &new_sig, &old_sig);
	printf("old_sig: %16Lx\n", *(unsigned long long*)&old_sig);
	printf("new_sig: %16Lx\n", *(unsigned long long*)&new_sig);
	
	argc--; argv++;
	return argc ? execvp(*argv, argv) : 0;
}