Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
signal.h
Go to the documentation of this file.
1 
4 #ifndef __KERNEL_SIGNAL_H__
5 #define __KERNEL_SIGNAL_H__
6 
7 #include <stdbool.h>
8 
9 bool is_signal_defined(int signum);
10 uint32_t sig2bit(int signum);
11 int get_signal_index(int signum);
12 
13 #endif