summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2004-04-06 19:08:40 +0000
committerjhb <jhb@FreeBSD.org>2004-04-06 19:08:40 +0000
commit24076d2f57f7e57a9e64fb07198e0fc62bfbcd81 (patch)
treea5686d2d8f322e381aafd08ecbbe7bf1704d5c14 /sys
parent8ab84688c3dd4465acbea2186a9d970263498ea6 (diff)
downloadFreeBSD-src-24076d2f57f7e57a9e64fb07198e0fc62bfbcd81.zip
FreeBSD-src-24076d2f57f7e57a9e64fb07198e0fc62bfbcd81.tar.gz
Sort function prototypes.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/turnstile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/turnstile.h b/sys/sys/turnstile.h
index 02a32df..68b7e79 100644
--- a/sys/sys/turnstile.h
+++ b/sys/sys/turnstile.h
@@ -74,17 +74,17 @@ struct turnstile;
void init_turnstiles(void);
struct turnstile *turnstile_alloc(void);
+void turnstile_broadcast(struct turnstile *);
void turnstile_claim(struct turnstile *);
+int turnstile_empty(struct turnstile *);
void turnstile_free(struct turnstile *);
+struct thread *turnstile_head(struct turnstile *);
struct turnstile *turnstile_lookup(struct lock_object *);
void turnstile_release(struct lock_object *);
int turnstile_signal(struct turnstile *);
void turnstile_unpend(struct turnstile *);
void turnstile_wait(struct turnstile *, struct lock_object *,
struct thread *);
-void turnstile_broadcast(struct turnstile *);
-struct thread *turnstile_head(struct turnstile *);
-int turnstile_empty(struct turnstile *);
#endif /* _KERNEL */
#endif /* _SYS_TURNSTILE_H_ */
OpenPOWER on IntegriCloud