Fix an inconsistency that came in with Lite: setrq() was renamed to

setrunqueue(), but remrq() was never renamed.  Rename remrq() to
remrunqueue().  Also, move remrunqueue() prototype from vm/vm_extern.h
to sys/proc.h, so that it's in the same place as the setrunqueue() prototype
and other related prototypes.
This commit is contained in:
cgd 1996-11-06 19:33:39 +00:00
parent db5fe6cfb2
commit ee08818e7a
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: proc.h,v 1.46 1996/10/02 18:05:09 ws Exp $ */
/* $NetBSD: proc.h,v 1.47 1996/11/06 19:33:39 cgd Exp $ */
/*-
* Copyright (c) 1986, 1989, 1991, 1993
@ -302,6 +302,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 *));

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_extern.h,v 1.20 1996/04/23 12:25:23 christos Exp $ */
/* $NetBSD: vm_extern.h,v 1.21 1996/11/06 19:33:42 cgd Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -135,7 +135,6 @@ void vsunlock __P((caddr_t, u_int));
/* Machine dependent portion */
void vmapbuf __P((struct buf *, vm_size_t));
void vunmapbuf __P((struct buf *, vm_size_t));
void remrq __P((struct proc *));
void pagemove __P((caddr_t, caddr_t, size_t));
#ifdef __FORK_BRAINDAMAGE
int cpu_fork __P((struct proc *, struct proc *));