ifndef some more routines that are macros on the vax port.
This commit is contained in:
parent
df594988e2
commit
01ae1e2acf
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: proc.h,v 1.123 2001/02/27 22:10:27 lukem Exp $ */
|
/* $NetBSD: proc.h,v 1.124 2001/03/04 20:49:34 matt Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1986, 1989, 1991, 1993
|
* Copyright (c) 1986, 1989, 1991, 1993
|
||||||
|
@ -408,10 +408,14 @@ void preempt(struct proc *);
|
||||||
void mi_switch(struct proc *);
|
void mi_switch(struct proc *);
|
||||||
void pgdelete(struct pgrp *pgrp);
|
void pgdelete(struct pgrp *pgrp);
|
||||||
void procinit(void);
|
void procinit(void);
|
||||||
|
#ifndef remrunqueue
|
||||||
void remrunqueue(struct proc *);
|
void remrunqueue(struct proc *);
|
||||||
|
#endif
|
||||||
void resetpriority(struct proc *);
|
void resetpriority(struct proc *);
|
||||||
void setrunnable(struct proc *);
|
void setrunnable(struct proc *);
|
||||||
|
#ifndef setrunqueue
|
||||||
void setrunqueue(struct proc *);
|
void setrunqueue(struct proc *);
|
||||||
|
#endif
|
||||||
void suspendsched(void);
|
void suspendsched(void);
|
||||||
int ltsleep(void *chan, int pri, const char *wmesg, int timo,
|
int ltsleep(void *chan, int pri, const char *wmesg, int timo,
|
||||||
__volatile struct simplelock *);
|
__volatile struct simplelock *);
|
||||||
|
@ -425,7 +429,9 @@ int fork1(struct proc *, int, int, void *, size_t,
|
||||||
void (*)(void *), void *, register_t *, struct proc **);
|
void (*)(void *), void *, register_t *, struct proc **);
|
||||||
void rqinit(void);
|
void rqinit(void);
|
||||||
int groupmember(gid_t, struct ucred *);
|
int groupmember(gid_t, struct ucred *);
|
||||||
|
#ifndef cpu_switch
|
||||||
void cpu_switch(struct proc *);
|
void cpu_switch(struct proc *);
|
||||||
|
#endif
|
||||||
void cpu_exit(struct proc *);
|
void cpu_exit(struct proc *);
|
||||||
void cpu_fork(struct proc *, struct proc *, void *, size_t,
|
void cpu_fork(struct proc *, struct proc *, void *, size_t,
|
||||||
void (*)(void *), void *);
|
void (*)(void *), void *);
|
||||||
|
|
Loading…
Reference in New Issue