diff options
author | brueffer <brueffer@FreeBSD.org> | 2008-03-26 07:32:08 +0000 |
---|---|---|
committer | brueffer <brueffer@FreeBSD.org> | 2008-03-26 07:32:08 +0000 |
commit | b64d211df297d77924499922ae04318904cd0e56 (patch) | |
tree | e7fe03597b4470bc5563c7f3e7e962c88698ab9e /lib/libc_r | |
parent | 5c2e61e801aef375b0188875eeb133a6d8d46be7 (diff) | |
download | FreeBSD-src-b64d211df297d77924499922ae04318904cd0e56.zip FreeBSD-src-b64d211df297d77924499922ae04318904cd0e56.tar.gz |
Fix some "in in" typos in comments.
PR: 121490
Submitted by: Anatoly Borodin <anatoly.borodin@gmail.com>
Approved by: rwatson (mentor), jkoshy
MFC after: 3 days
Diffstat (limited to 'lib/libc_r')
-rw-r--r-- | lib/libc_r/uthread/uthread_sig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_sig.c b/lib/libc_r/uthread/uthread_sig.c index d6045a0..7f700b2 100644 --- a/lib/libc_r/uthread/uthread_sig.c +++ b/lib/libc_r/uthread/uthread_sig.c @@ -342,7 +342,7 @@ thread_sig_find(int sig) * Enter a loop to look for threads that have the signal * unmasked. POSIX specifies that a thread in a sigwait * will get the signal over any other threads. Second - * preference will be threads in in a sigsuspend. Third + * preference will be threads in a sigsuspend. Third * preference will be the current thread. If none of the * above, then the signal is delivered to the first thread * that is found. Note that if a custom handler is not |