aboutsummaryrefslogtreecommitdiff
path: root/bits
diff options
context:
space:
mode:
Diffstat (limited to 'bits')
-rw-r--r--bits/types/sigevent_t.h6
-rw-r--r--bits/types/siginfo_t.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/bits/types/sigevent_t.h b/bits/types/sigevent_t.h
index 7b8cb05..5611268 100644
--- a/bits/types/sigevent_t.h
+++ b/bits/types/sigevent_t.h
@@ -2,15 +2,15 @@
#define __sigevent_t_defined 1
#include <bits/types.h>
-#include <bits/types/sigval_t.h>
+#include <bits/types/__sigval_t.h>
/* Structure to transport application-defined values with signals. */
typedef struct sigevent
{
- sigval_t sigev_value;
+ __sigval_t sigev_value;
int sigev_signo;
int sigev_notify;
- void (*sigev_notify_function) (sigval_t); /* Function to start. */
+ void (*sigev_notify_function) (__sigval_t); /* Function to start. */
void *sigev_notify_attributes; /* Really pthread_attr_t.*/
} sigevent_t;
diff --git a/bits/types/siginfo_t.h b/bits/types/siginfo_t.h
index ab6bf18..1ac2a98 100644
--- a/bits/types/siginfo_t.h
+++ b/bits/types/siginfo_t.h
@@ -2,7 +2,7 @@
#define __siginfo_t_defined 1
#include <bits/types.h>
-#include <bits/types/sigval_t.h>
+#include <bits/types/__sigval_t.h>
typedef struct siginfo
{
@@ -15,7 +15,7 @@ typedef struct siginfo
void *si_addr; /* Address of faulting instruction. */
int si_status; /* Exit value or signal. */
long int si_band; /* Band event for SIGPOLL. */
- sigval_t si_value; /* Signal value. */
+ __sigval_t si_value; /* Signal value. */
} siginfo_t;
#endif