diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/mq_notify.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/mq_notify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/mq_notify.c b/sysdeps/unix/sysv/linux/mq_notify.c index 907585551f..c287954a90 100644 --- a/sysdeps/unix/sysv/linux/mq_notify.c +++ b/sysdeps/unix/sysv/linux/mq_notify.c @@ -32,9 +32,9 @@ /* Defined in the kernel headers: */ #define NOTIFY_COOKIE_LEN 32 /* Length of the cookie used. */ -#define NOTIFY_WOKENUP 1 /* Code for notifcation. */ +#define NOTIFY_WOKENUP 1 /* Code for notification. */ #define NOTIFY_REMOVED 2 /* Code for closed message queue - of de-notifcation. */ + of de-notification. */ /* Data structure for the queued notification requests. */ @@ -61,7 +61,7 @@ static int netlink_socket = -1; /* Barrier used to make sure data passed to the new thread is not - resused by the parent. */ + reused by the parent. */ static pthread_barrier_t notify_barrier; |