diff options
author | 1996-11-24 01:39:23 +0000 | |
---|---|---|
committer | 1996-11-24 01:39:23 +0000 | |
commit | fd7fd70f2c56a072afda204c6ff4dfd0aa4de2da (patch) | |
tree | 8087bcda6738ee812d64836c303c7f047cce3462 | |
parent | Feed on COPTS (diff) | |
download | wireguard-openbsd-fd7fd70f2c56a072afda204c6ff4dfd0aa4de2da.tar.xz wireguard-openbsd-fd7fd70f2c56a072afda204c6ff4dfd0aa4de2da.zip |
added prototype for remrunqueue()
-rw-r--r-- | sys/sys/proc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index ae57b50cbc6..187e2d871b3 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.10 1996/08/31 09:15:12 pefo Exp $ */ +/* $OpenBSD: proc.h,v 1.11 1996/11/24 01:39:23 kstailey Exp $ */ /* $NetBSD: proc.h,v 1.44 1996/04/22 01:23:21 christos Exp $ */ /*- @@ -306,6 +306,7 @@ int leavepgrp __P((struct proc *p)); void mi_switch __P((void)); void pgdelete __P((struct pgrp *pgrp)); void procinit __P((void)); +void remrunqueue __P((struct proc *)); void resetpriority __P((struct proc *)); void setrunnable __P((struct proc *)); void setrunqueue __P((struct proc *)); |