From 94008858f8ddc4eaa1230d4335ad04e7d0fa0810 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 6 Apr 2004 19:08:40 +0000 Subject: [PATCH] Sort function prototypes. --- sys/sys/turnstile.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/sys/turnstile.h b/sys/sys/turnstile.h index 02a32dfbd807..68b7e79d92f6 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_ */