summaryrefslogtreecommitdiffstats
path: root/src/kernel/tests/include/lapi/signal.h
blob: d22965a94355f90c5af0c38c182536445dcd552f (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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (c) 2019 Linaro Limited. All rights reserved.
 * Author: Daniel Díaz <daniel.diaz@linaro.org>
 */

#ifndef LAPI_SIGNAL_H
#define LAPI_SIGNAL_H

#include <signal.h>

/*
 * Some libc implementations might differ in the definitions they include. This
 * covers those differences for all tests to successfully build.
 */

#ifndef __SIGRTMIN
# define __SIGRTMIN 32
#endif
#ifndef __SIGRTMAX
# define __SIGRTMAX (_NSIG - 1)
#endif

#endif