aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/bits
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits')
-rw-r--r--sysdeps/unix/sysv/linux/bits/types/sigevent_t.h6
-rw-r--r--sysdeps/unix/sysv/linux/bits/types/siginfo_t.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/types/sigevent_t.h b/sysdeps/unix/sysv/linux/bits/types/sigevent_t.h
index 0d4857b16e..e8b28de7e3 100644
--- a/sysdeps/unix/sysv/linux/bits/types/sigevent_t.h
+++ b/sysdeps/unix/sysv/linux/bits/types/sigevent_t.h
@@ -3,7 +3,7 @@
#include <bits/wordsize.h>
#include <bits/types.h>
-#include <bits/types/sigval_t.h>
+#include <bits/types/__sigval_t.h>
#define __SIGEV_MAX_SIZE 64
#if __WORDSIZE == 64
@@ -21,7 +21,7 @@ typedef union pthread_attr_t pthread_attr_t;
/* 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;
@@ -35,7 +35,7 @@ typedef struct sigevent
struct
{
- void (*_function) (sigval_t); /* Function to start. */
+ void (*_function) (__sigval_t); /* Function to start. */
pthread_attr_t *_attribute; /* Thread attributes. */
} _sigev_thread;
} _sigev_un;
diff --git a/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h b/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
index bed69148f9..33766d1813 100644
--- a/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
+++ b/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
@@ -3,7 +3,7 @@
#include <bits/wordsize.h>
#include <bits/types.h>
-#include <bits/types/sigval_t.h>
+#include <bits/types/__sigval_t.h>
#define __SI_MAX_SIZE 128
#if __WORDSIZE == 64
@@ -64,7 +64,7 @@ typedef struct
{
int si_tid; /* Timer ID. */
int si_overrun; /* Overrun count. */
- sigval_t si_sigval; /* Signal value. */
+ __sigval_t si_sigval; /* Signal value. */
} _timer;
/* POSIX.1b signals. */
@@ -72,7 +72,7 @@ typedef struct
{
__pid_t si_pid; /* Sending process ID. */
__uid_t si_uid; /* Real user ID of sending process. */
- sigval_t si_sigval; /* Signal value. */
+ __sigval_t si_sigval; /* Signal value. */
} _rt;
/* SIGCHLD. */