Signals. More...
Go to the source code of this file.
Data Structures | |
union | sigval |
Signal value. More... | |
struct | sigevent |
Signal event structure. More... | |
Macros | |
Values of sigev_notify. | |
#define | SIGEV_NONE 0 |
#define | SIGEV_SIGNAL 1 |
#define | SIGEV_THREAD 2 |
Signals.
Signals are currently not implemented in FreeRTOS+POSIX. This header only defines the signal data structures used elsewhere.
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html
#define SIGEV_NONE 0 |
No asynchronous notification is delivered when the event of interest occurs.
#define SIGEV_SIGNAL 1 |
A queued signal, with an application-defined value, is generated when the event of interest occurs. Not supported.
#define SIGEV_THREAD 2 |
A notification function is called to perform notification.