mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-01-01 06:23:37 +01:00
12 lines
332 B
C
12 lines
332 B
C
#ifndef __BITS_SIGACTION_H__
|
|
# define __BITS_SIGACTION_H__
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
/* Values for the HOW argument to `sigprocmask'. */
|
|
#define SIG_BLOCK 0 /* Block signals. */
|
|
#define SIG_UNBLOCK 1 /* Unblock signals. */
|
|
#define SIG_SETMASK 2 /* Set the set of blocked signals. */
|
|
|
|
#endif /*__BITS_SIGACTION_H__*/
|