- Move the prototype for proc_reparent from sys/ptrace.h to sys/proc.h

- Fix the sorting of function prototypes in sys/proc.h
This commit is contained in:
jhb 2000-10-19 18:55:22 +00:00
parent 8ce5db22ac
commit b480cb0ddd
2 changed files with 2 additions and 2 deletions

View File

@ -501,9 +501,10 @@ void fixjobc __P((struct proc *p, struct pgrp *pgrp, int entering));
int inferior __P((struct proc *p));
int leavepgrp __P((struct proc *p));
void mi_switch __P((void));
void procinit __P((void));
int p_can __P((const struct proc *p1, const struct proc *p2, int operation,
int *privused));
void proc_reparent __P((struct proc *child, struct proc *newparent));
void procinit __P((void));
void resetpriority __P((struct proc *));
int roundrobin_interval __P((void));

View File

@ -55,7 +55,6 @@
#include <machine/ptrace.h> /* machine-specific requests, if any */
#ifdef _KERNEL
void proc_reparent __P((struct proc *child, struct proc *newparent));
int ptrace_set_pc __P((struct proc *p, unsigned long addr));
int ptrace_single_step __P((struct proc *p));
int ptrace_write_u __P((struct proc *p, vm_offset_t off, long data));