--- src/sys/sys/systm.h 2007/11/25 00:13:28 1.77 +++ src/sys/sys/systm.h 2008/03/05 12:44:42 1.78 @@ -120,6 +120,7 @@ extern vm_paddr_t Maxmem; /* Highest phy struct intrframe; struct spinlock; +struct lwkt_serialize; struct malloc_type; struct proc; struct xwait; @@ -325,6 +326,8 @@ extern watchdog_tickle_fn wdog_tickler; */ int tsleep (void *, int, const char *, int); int msleep (void *, struct spinlock *, int, const char *, int); +int serialize_sleep(void *, struct lwkt_serialize *, int, + const char *, int); void tsleep_interlock (void *chan); int lwkt_sleep (const char *, int); void tstop (void);