From: Wolfram Sang Date: Tue, 19 Feb 2019 15:59:31 +0000 (-0500) Subject: nptl: Fix comment typo in pthread_mutex_trylock.c X-Git-Tag: glibc-2.30~337 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=04de93022685bd19347c3ded5ac50b09e2037243;p=glibc.git nptl: Fix comment typo in pthread_mutex_trylock.c --- diff --git a/ChangeLog b/ChangeLog index 95765b8b98..bc6adaae90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-02-19 Wolfram Sang + + * nptl/pthread_mutex_trylock.c: Fix comment. + 2019-02-19 Carlos O'Donell * nptl/pthread_tryjoin.c: Fix comment. diff --git a/nptl/pthread_mutex_trylock.c b/nptl/pthread_mutex_trylock.c index bf2869eca2..3bba464409 100644 --- a/nptl/pthread_mutex_trylock.c +++ b/nptl/pthread_mutex_trylock.c @@ -130,7 +130,7 @@ __pthread_mutex_trylock (pthread_mutex_t *mutex) __asm ("" ::: "memory"); THREAD_SETMEM (THREAD_SELF, robust_head.list_op_pending, NULL); - /* Note that we deliberately exist here. If we fall + /* Note that we deliberately exit here. If we fall through to the end of the function __nusers would be incremented which is not correct because the old owner has to be discounted. */