diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-18 22:03:22 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-18 22:03:22 +0000 |
commit | f5b1d8a823c46e3caba97f192b9051295fb2c282 (patch) | |
tree | a01e2287d8b58727b0b9fe901db6f36189b5eeb6 /lib/librthread/rthread.h | |
parent | 2dcb9be0d90b332d024e19c4b03e9965e5b670b5 (diff) |
Fix previous commit: _rthread_init() was static.
Improve consistency of error naming
Diffstat (limited to 'lib/librthread/rthread.h')
-rw-r--r-- | lib/librthread/rthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/librthread/rthread.h b/lib/librthread/rthread.h index d410b200212..570f22dc76e 100644 --- a/lib/librthread/rthread.h +++ b/lib/librthread/rthread.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread.h,v 1.33 2012/02/18 21:12:09 guenther Exp $ */ +/* $OpenBSD: rthread.h,v 1.34 2012/02/18 22:03:21 guenther Exp $ */ /* * Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -178,6 +178,7 @@ void _spinunlock(_spinlock_lock_t *); int _sem_wait(sem_t, int, int *); int _sem_post(sem_t); +int _rthread_init(void); void _rthread_setflag(pthread_t, int); void _rthread_clearflag(pthread_t, int); struct stack *_rthread_alloc_stack(pthread_t); |