You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
495 B
25 lines
495 B
// 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
|