[libc] move struct sigevent to libc_signal.h file.

This commit is contained in:
BernardXiong
2017-12-31 14:48:54 +08:00
parent 5a95d35626
commit 4bc082e7cb
3 changed files with 14 additions and 22 deletions

View File

@@ -30,12 +30,26 @@
extern "C" {
#endif
/* Signal Generation and Delivery, P1003.1b-1993, p. 63
NOTE: P1003.1c/D10, p. 34 adds sigev_notify_function and
sigev_notify_attributes to the sigevent structure. */
union sigval
{
int sival_int; /* Integer signal value */
void *sival_ptr; /* Pointer signal value */
};
struct sigevent
{
int sigev_notify; /* Notification type */
int sigev_signo; /* Signal number */
union sigval sigev_value; /* Signal value */
void (*sigev_notify_function)( union sigval );
/* Notification function */
void *sigev_notify_attributes; /* Notification Attributes, really pthread_attr_t */
};
struct siginfo
{
rt_uint8_t si_signo;