diff options
author | Jim Meyering <jim@meyering.net> | 2011-04-22 21:34:32 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-22 21:34:32 -0400 |
commit | ded5b9b7c7c0afc7edc520911d76558564638bda (patch) | |
tree | ec9520664a3c01f979e2be5d07ceb678e6226a46 /nptl | |
parent | e84142d2a9eed278ecf869459a5de0b640074517 (diff) | |
download | glibc-ded5b9b7c7c0afc7edc520911d76558564638bda.tar glibc-ded5b9b7c7c0afc7edc520911d76558564638bda.tar.gz glibc-ded5b9b7c7c0afc7edc520911d76558564638bda.tar.bz2 glibc-ded5b9b7c7c0afc7edc520911d76558564638bda.zip |
Remove doubled words.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/pthread_kill.c | 4 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c | 4 | ||||
-rw-r--r-- | nptl/tst-kill4.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_kill.c b/nptl/sysdeps/unix/sysv/linux/pthread_kill.c index 75089365c3..73434da9d1 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_kill.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_kill.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2004, 2006, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -45,7 +45,7 @@ __pthread_kill (threadid, signo) /* Not a valid thread handle. */ return ESRCH; - /* Disallow sending the signal we use for cancellation, timers, for + /* Disallow sending the signal we use for cancellation, timers, for the setxid implementation. */ if (signo == SIGCANCEL || signo == SIGTIMER || signo == SIGSETXID) return EINVAL; diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c b/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c index 4440703b6a..69f7dcab13 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009 Free Software Foundation, Inc. +/* Copyright (C) 2009, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2009. @@ -49,7 +49,7 @@ pthread_sigqueue (threadid, signo, value) /* Not a valid thread handle. */ return ESRCH; - /* Disallow sending the signal we use for cancellation, timers, for + /* Disallow sending the signal we use for cancellation, timers, for the setxid implementation. */ if (signo == SIGCANCEL || signo == SIGTIMER || signo == SIGSETXID) return EINVAL; diff --git a/nptl/tst-kill4.c b/nptl/tst-kill4.c index a1b97e7b26..15626db6b6 100644 --- a/nptl/tst-kill4.c +++ b/nptl/tst-kill4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2006 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2006, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -67,7 +67,7 @@ do_test (void) /* The following only works because we assume here something about the implementation. Namely, that the memory allocated for the - thread descriptor is not going away, that the the TID field is + thread descriptor is not going away, that the TID field is cleared and therefore the signal is sent to process 0, and that we can savely assume there is no other process with this ID at that time. */ |