• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2019 Linaro Limited. All rights reserved.
4  * Author: Daniel Díaz <daniel.diaz@linaro.org>
5  */
6 
7 #ifndef LAPI_SIGNAL_H
8 #define LAPI_SIGNAL_H
9 
10 #include <signal.h>
11 
12 /*
13  * Some libc implementations might differ in the definitions they include. This
14  * covers those differences for all tests to successfully build.
15  */
16 
17 #ifndef __SIGRTMIN
18 # define __SIGRTMIN 32
19 #endif
20 #ifndef __SIGRTMAX
21 # define __SIGRTMAX (_NSIG - 1)
22 #endif
23 
24 #endif
25