aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/mq_notify.c
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2023-05-23 10:50:31 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2023-05-23 11:59:23 +0000
commitd13733c166b71ac05056f553f0afdc8a363b2820 (patch)
treed3404db5f0dda5e2bc994a0108806a74d0d144d6 /sysdeps/unix/sysv/linux/mq_notify.c
parent1e9d5987fd94b88bdf4ebfb9f13d4a472d529cdd (diff)
downloadglibc-d13733c166b71ac05056f553f0afdc8a363b2820.zip
glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.gz
glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.bz2
Fix misspellings in sysdeps/unix -- BZ 25337
Applying this commit results in bit-identical rebuild of libc.so.6 math/libm.so.6 elf/ld-linux-x86-64.so.2 mathvec/libmvec.so.1 Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/mq_notify.c')
-rw-r--r--sysdeps/unix/sysv/linux/mq_notify.c6
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 9075855..c287954 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;