de-__inline a trio of functions to shave some space.
authorblambert <blambert@openbsd.org>
Fri, 11 Jul 2008 14:12:57 +0000 (14:12 +0000)
committerblambert <blambert@openbsd.org>
Fri, 11 Jul 2008 14:12:57 +0000 (14:12 +0000)
ok art@

sys/kern/sys_pipe.c

index 9a74bea..ffd6cf1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_pipe.c,v 1.53 2007/11/28 15:19:43 miod Exp $      */
+/*     $OpenBSD: sys_pipe.c,v 1.54 2008/07/11 14:12:57 blambert Exp $  */
 
 /*
  * Copyright (c) 1996 John S. Dyson
@@ -90,9 +90,9 @@ struct pool pipe_pool;
 void   pipeclose(struct pipe *);
 void   pipe_free_kmem(struct pipe *);
 int    pipe_create(struct pipe *);
-static __inline int pipelock(struct pipe *);
-static __inline void pipeunlock(struct pipe *);
-static __inline void pipeselwakeup(struct pipe *);
+int    pipelock(struct pipe *);
+void   pipeunlock(struct pipe *);
+void   pipeselwakeup(struct pipe *);
 int    pipespace(struct pipe *, u_int);
 
 /*
@@ -223,7 +223,7 @@ pipe_create(struct pipe *cpipe)
 /*
  * lock a pipe for I/O, blocking other access
  */
-static __inline int
+int
 pipelock(struct pipe *cpipe)
 {
        int error;
@@ -239,7 +239,7 @@ pipelock(struct pipe *cpipe)
 /*
  * unlock a pipe I/O lock
  */
-static __inline void
+void
 pipeunlock(struct pipe *cpipe)
 {
        cpipe->pipe_state &= ~PIPE_LOCK;
@@ -249,7 +249,7 @@ pipeunlock(struct pipe *cpipe)
        }
 }
 
-static __inline void
+void
 pipeselwakeup(struct pipe *cpipe)
 {
        if (cpipe->pipe_state & PIPE_SEL) {