Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/proc.h
| Show First 20 Lines • Show All 1,167 Lines • ▼ Show 20 Lines | |||||
| int inferior(struct proc *p); | int inferior(struct proc *p); | ||||
| void itimer_proc_continue(struct proc *p); | void itimer_proc_continue(struct proc *p); | ||||
| void kqtimer_proc_continue(struct proc *p); | void kqtimer_proc_continue(struct proc *p); | ||||
| void kern_proc_vmmap_resident(struct vm_map *map, struct vm_map_entry *entry, | void kern_proc_vmmap_resident(struct vm_map *map, struct vm_map_entry *entry, | ||||
| int *resident_count, bool *super); | int *resident_count, bool *super); | ||||
| void kern_yield(int); | void kern_yield(int); | ||||
| void killjobc(void); | void killjobc(void); | ||||
| int leavepgrp(struct proc *p); | int leavepgrp(struct proc *p); | ||||
| int maybe_preempt(struct thread *td); | |||||
| void maybe_yield(void); | void maybe_yield(void); | ||||
| void mi_switch(int flags); | void mi_switch(int flags); | ||||
| int p_candebug(struct thread *td, struct proc *p); | int p_candebug(struct thread *td, struct proc *p); | ||||
| int p_cansee(struct thread *td, struct proc *p); | int p_cansee(struct thread *td, struct proc *p); | ||||
| int p_cansched(struct thread *td, struct proc *p); | int p_cansched(struct thread *td, struct proc *p); | ||||
| int p_cansignal(struct thread *td, struct proc *p, int signum); | int p_cansignal(struct thread *td, struct proc *p, int signum); | ||||
| int p_canwait(struct thread *td, struct proc *p); | int p_canwait(struct thread *td, struct proc *p); | ||||
| struct pargs *pargs_alloc(int len); | struct pargs *pargs_alloc(int len); | ||||
| ▲ Show 20 Lines • Show All 180 Lines • Show Last 20 Lines | |||||