aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/arm64/bti/signal.c
blob: f3fd29b91141cd15a06e98857782bfb9769befb3 (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2019  Arm Limited
 * Original author: Dave Martin <Dave.Martin@arm.com>
 */

#include "system.h"
#include "signal.h"

int sigemptyset(sigset_t *s)
{
	unsigned int i;

	for (i = 0; i < _NSIG_WORDS; ++i)
		s->sig[i] = 0;

	return 0;
}

int sigaddset(sigset_t *s, int n)
{
	if (n < 1 || n > _NSIG)
		return -EINVAL;

	s->sig[(n - 1) / _NSIG_BPW] |= 1UL << (n - 1) % _NSIG_BPW;
	return 0;
}

int sigaction(int n, struct sigaction *sa, const struct sigaction *old)
{
	return syscall(__NR_rt_sigaction, n, sa, old, sizeof(sa->sa_mask));
}

int sigprocmask(int how, const sigset_t *mask, sigset_t *old)
{
	return syscall(__NR_rt_sigprocmask, how, mask, old, sizeof(*mask));
}