nptl: Fix comment typo in pthread_mutex_trylock.c

This commit is contained in:
Wolfram Sang 2019-02-19 10:59:31 -05:00 committed by Carlos O'Donell
parent b026ce1ee9
commit 04de930226
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2019-02-19 Wolfram Sang <wsa@the-dreams.de>
* nptl/pthread_mutex_trylock.c: Fix comment.
2019-02-19 Carlos O'Donell <carlos@redhat.com>
* nptl/pthread_tryjoin.c: Fix comment.

View File

@ -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. */