diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 07:24:11 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-07-05 07:24:11 +0000 |
commit | 7b490349b96294a8ee79902b6a38bca920b3d361 (patch) | |
tree | 6805d7d5abac94958c903fb5c14c850e8b3b0b46 /sys/vm | |
parent | 7f43198e67d1547dc3a93a172d44c35b0aebea64 (diff) |
kern_fthread is no longer needed.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_extern.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/sys/vm/vm_extern.h b/sys/vm/vm_extern.h index c9b45b665f4..aa5976c9e95 100644 --- a/sys/vm/vm_extern.h +++ b/sys/vm/vm_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_extern.h,v 1.22 2001/06/27 07:14:22 art Exp $ */ +/* $OpenBSD: vm_extern.h,v 1.23 2001/07/05 07:24:10 art Exp $ */ /* $NetBSD: vm_extern.h,v 1.20 1996/04/23 12:25:23 christos Exp $ */ /*- @@ -46,21 +46,7 @@ struct vnode; struct core; #ifdef _KERNEL -void assert_wait __P((void *, boolean_t)); void swstrategy __P((struct buf *)); -void thread_block __P((char *)); -void thread_sleep_msg __P((void *, simple_lock_t, - boolean_t, char *, int)); - -/* backwards compatibility */ -#define thread_sleep(event, lock, ruptible) \ - thread_sleep_msg((event), (lock), (ruptible), "thrd_sleep") - -/* - * This define replaces a thread_wakeup prototype, as thread_wakeup - * was solely a wrapper around wakeup. - */ -#define thread_wakeup wakeup /* Machine dependent portion */ void vmapbuf __P((struct buf *, vsize_t)); |