diff options
author | 2012-03-02 17:49:58 +0000 | |
---|---|---|
committer | 2012-03-02 17:49:58 +0000 | |
commit | e9ea442f0635d8f712146387f63d767f1302e297 (patch) | |
tree | 0bef6edbf769c81845a6cdd0aaf5463a33e619e0 | |
parent | Fix handling of 'offend' (OFFset from the END of the arg list) (diff) | |
download | wireguard-openbsd-e9ea442f0635d8f712146387f63d767f1302e297.tar.xz wireguard-openbsd-e9ea442f0635d8f712146387f63d767f1302e297.zip |
for readability, put the label on it's own line.
-rw-r--r-- | lib/librthread/rthread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/librthread/rthread.c b/lib/librthread/rthread.c index 057eaecfc53..a81645ee1fb 100644 --- a/lib/librthread/rthread.c +++ b/lib/librthread/rthread.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread.c,v 1.55 2012/02/24 05:37:51 guenther Exp $ */ +/* $OpenBSD: rthread.c,v 1.56 2012/03/02 17:49:58 fgsch Exp $ */ /* * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -254,7 +254,8 @@ _rthread_reaper(void) { pthread_t thread; -restart:_spinlock(&_thread_gc_lock); +restart: + _spinlock(&_thread_gc_lock); TAILQ_FOREACH(thread, &_thread_gc_list, waiting) { if (thread->tid != 0) continue; |