diff options
author | Dominik Vogt <vogt@de.ibm.com> | 2013-07-19 05:16:28 +0000 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2013-07-19 02:35:04 -0400 |
commit | 075b9322c9e091b7e139f4c57e07d78d896c7a62 (patch) | |
tree | ed59e1f76c65070543cce6558eb562752b0b31c9 /nptl/pthread_mutex_trylock.c | |
parent | d3d3ce982a61f4a657589f7fa0a979e9e907580d (diff) | |
download | glibc-075b9322c9e091b7e139f4c57e07d78d896c7a62.tar.gz glibc-075b9322c9e091b7e139f4c57e07d78d896c7a62.tar.xz glibc-075b9322c9e091b7e139f4c57e07d78d896c7a62.zip |
Clean up whitespace in lock elision patches.
Signed-off-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'nptl/pthread_mutex_trylock.c')
-rw-r--r-- | nptl/pthread_mutex_trylock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthread_mutex_trylock.c b/nptl/pthread_mutex_trylock.c index 600c8483b0..24fb05286f 100644 --- a/nptl/pthread_mutex_trylock.c +++ b/nptl/pthread_mutex_trylock.c @@ -31,7 +31,7 @@ #endif /* We don't force elision in trylock, because this can lead to inconsistent - lock state if the lock was actually busy. */ + lock state if the lock was actually busy. */ int __pthread_mutex_trylock (mutex) @@ -73,7 +73,7 @@ __pthread_mutex_trylock (mutex) if (lll_trylock_elision (mutex->__data.__lock, mutex->__data.__elision) != 0) break; - /* Don't record the ownership. */ + /* Don't record the ownership. */ return 0; case PTHREAD_MUTEX_TIMED_NP: |