Searched refs:proc (Results 1 - 25 of 1370) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/pc98/include/
H A Dproc.h6 #include <i386/proc.h>
/freebsd-9.3-release/sys/sys/
H A Dkthread.h42 struct proc **global_procpp; /* ptr to proc ptr save area */
52 int kproc_create(void (*)(void *), void *, struct proc **,
55 int kproc_resume(struct proc *);
58 int kproc_suspend(struct proc *, int);
59 void kproc_suspend_check(struct proc *);
63 struct proc **,
69 struct proc *, struct thread **,
H A Dracct.h43 struct proc;
144 int racct_add(struct proc *p, int resource, uint64_t amount);
146 void racct_add_force(struct proc *p, int resource, uint64_t amount);
147 int racct_set(struct proc *p, int resource, uint64_t amount);
148 void racct_set_force(struct proc *p, int resource, uint64_t amount);
149 void racct_sub(struct proc *p, int resource, uint64_t amount);
151 uint64_t racct_get_limit(struct proc *p, int resource);
152 uint64_t racct_get_available(struct proc *p, int resource);
157 int racct_proc_fork(struct proc *parent, struct proc *chil
[all...]
H A Dprocdesc.h54 struct proc;
62 struct proc *pd_proc; /* (t) Process. */
94 int procdesc_exit(struct proc *);
95 int procdesc_find(struct thread *, int fd, cap_rights_t, struct proc **);
97 void procdesc_new(struct proc *, int);
100 void procdesc_reap(struct proc *);
H A Drctl.h44 struct proc;
70 struct proc *rs_proc;
142 int rctl_enforce(struct proc *p, int resource, uint64_t amount);
143 int64_t rctl_pcpu_available(const struct proc *p);
144 uint64_t rctl_get_limit(struct proc *p, int resource);
145 uint64_t rctl_get_available(struct proc *p, int resource);
147 void rctl_proc_ucred_changed(struct proc *p, struct ucred *newcred);
148 int rctl_proc_fork(struct proc *parent, struct proc *child);
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgnu-nat.h31 /* Converts a GDB pid to a struct proc. */
32 struct proc *inf_tid_to_thread (struct inf *inf, int tid);
37 /* A proc is either a thread, or the task (there can only be one task proc
39 struct proc struct
70 struct proc *next;
76 #define proc_is_task(proc) ((proc)->tid == PROC_TID_TASK)
77 #define proc_is_thread(proc) ((proc)
[all...]
H A Devent-loop.h90 extern void add_file_handler (int fd, handler_func * proc, gdb_client_data client_data);
93 create_async_signal_handler (sig_handler_func * proc, gdb_client_data client_data);
95 extern int create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data);
H A Dgnu-nat.c78 /* If we've sent a proc_wait_request to the proc server, the pid of the
100 struct proc *inf_tid_to_proc (struct inf *inf, int tid);
102 struct proc *run_thread,
107 void inf_set_step_thread (struct inf *inf, struct proc *proc);
117 void proc_abort (struct proc *proc, int force);
118 struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
119 struct proc *_proc_free (struct proc *pro
246 __proc_pid(struct proc *proc) argument
255 proc_update_sc(struct proc *proc) argument
321 proc_abort(struct proc *proc, int force) argument
358 proc_get_state(struct proc *proc, int will_modify) argument
394 proc_get_exception_port(struct proc * proc, mach_port_t * port) argument
404 proc_set_exception_port(struct proc * proc, mach_port_t port) argument
415 _proc_get_exc_port(struct proc *proc) argument
437 proc_steal_exc_port(struct proc *proc, mach_port_t exc_port) argument
480 proc_restore_exc_port(struct proc *proc) argument
510 proc_trace(struct proc *proc, int set) argument
544 struct proc *proc = xmalloc (sizeof (struct proc)); local
604 _proc_free(struct proc *proc) argument
1381 process_t proc; local
2555 proc_string(struct proc *proc) argument
2822 steal_exc_port(struct proc *proc, mach_port_t name) argument
[all...]
/freebsd-9.3-release/usr.bin/rpcgen/
H A Drpc_clntout.c82 proc_list *proc; local
85 for (proc = vp->procs; proc != NULL; proc = proc->next) {
88 ptype(proc->res_prefix, proc->res_type, 1);
90 pvname(proc->proc_name, vp->vers_num);
91 printarglist(proc, RESULT, "clnt", "CLIENT *");
94 pvname(proc
115 printarglist(proc_list *proc, const char *result, const char *addargname, const char *addargtype) argument
171 printbody(proc_list *proc) argument
[all...]
H A Drpc_sample.c83 proc_list *proc; local
93 for (proc = vp->procs; proc != NULL; proc = proc->next) {
97 ptype(proc->res_prefix, proc->res_type, 1);
100 ptype(proc->res_prefix, proc->res_type, 1);
104 if(proc
195 proc_list *proc; local
[all...]
H A Drpc_tblout.c89 proc_list *proc; local
108 for (proc = vp->procs; proc != NULL; proc = proc->next) {
109 current = atoi(proc->proc_num);
124 pvname_svc(proc->proc_name, vp->vers_num);
128 pvname(proc->proc_name, vp->vers_num);
133 if( proc->arg_num > 1 )
134 printit((char*) NULL, proc
[all...]
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dnewproc.d10 proc:::exec-success { trace(curpsinfo->pr_psargs); }
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Proc/
H A Dnewproc.d10 proc:::exec-success { trace(curpsinfo->pr_psargs); }
/freebsd-9.3-release/contrib/bmake/lst.lib/
H A DlstForEach.c72 Lst_ForEach(Lst l, int (*proc)(void *, void *), void *d)
74 return Lst_ForEachFrom(l, Lst_First(l), proc, d);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/
H A Dtst.sigwait.d31 proc:::signal-send
37 proc:::signal-clear
H A Dtst.startexit.ksh31 # 1. proc:::start
32 # 2. proc:::lwp-start
33 # 3. proc:::lwp-exit
34 # 4. proc:::exit
42 proc:::start
48 proc:::lwp-start
54 proc:::lwp-exit
60 proc:::exit
H A Dtst.exec.ksh29 # This script tests that the proc:::exec probe fires, followed by the
30 # proc:::exec-success probe (in a successful exec(2)).
38 proc:::exec
44 proc:::exec-success
/freebsd-9.3-release/sys/cddl/compat/opensolaris/sys/
H A Ddisp.h34 #include <sys/proc.h>
H A Dproc.h34 #include_next <sys/proc.h>
61 typedef struct proc proc_t;
63 extern struct proc *zfsproc;
66 thread_create(caddr_t stk, size_t stksize, void (*proc)(void *), void *arg,
80 error = kproc_kthread_add(proc, arg, &zfsproc, &td, RFSTOPPED,
81 stksize / PAGE_SIZE, "zfskern", "solthread %p", proc);
/freebsd-9.3-release/sys/fs/coda/
H A Dcoda_venus.h36 int venus_root(void *mdp, struct ucred *cred, struct proc *p,
39 struct ucred *cred, struct proc *p, /*out*/ struct vnode **vp);
41 struct ucred *cred, struct proc *p);
45 caddr_t data, struct ucred *cred, struct proc *p);
51 struct ucred *cred, struct proc *p);
53 struct proc *p, /*out*/ char **str, int *len);
54 int venus_fsync(void *mdp, struct CodaFid *fid, struct proc *p);
56 struct ucred *cred, struct proc *p, /*out*/ struct CodaFid *VFid,
60 struct proc *p, /*out*/ struct CodaFid *VFid,
63 struct ucred *cred, struct proc *
[all...]
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_socket.h40 struct proc;
52 void svr4_delete_socket(struct proc *, struct file *);
/freebsd-9.3-release/usr.sbin/rtprio/
H A Drtprio.c57 pid_t proc = 0; local
70 proc = parseint(argv[1], "pid");
71 proc = abs(proc);
74 if (rtprio(RTP_LOOKUP, proc, &rtp) != 0)
110 proc = parseint(argv[2], "pid");
111 proc = abs(proc);
114 if (rtprio(RTP_SET, proc, &rtp) != 0)
117 if (proc
[all...]
/freebsd-9.3-release/tools/regression/kqueue/
H A DMakefile15 proc.c \
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.fork.d44 proc:::create
58 proc:::exit
65 proc:::exit
/freebsd-9.3-release/sys/fs/pseudofs/
H A Dpseudofs_vnops.c46 #include <sys/proc.h>
87 pfs_visible_proc(struct thread *td, struct pfs_node *pn, struct proc *proc) argument
91 if (proc == NULL)
94 PROC_LOCK_ASSERT(proc, MA_OWNED);
96 visible = ((proc->p_flag & P_WEXIT) == 0);
98 visible = (p_cansee(td, proc) == 0);
100 visible = pn_vis(td, proc, pn);
107 pfs_visible(struct thread *td, struct pfs_node *pn, pid_t pid, struct proc **p)
109 struct proc *pro local
162 struct proc *proc; local
199 struct proc *proc; local
266 struct proc *proc; local
319 struct proc *proc; local
616 struct proc *proc; local
699 pfs_iterate(struct thread *td, struct proc *proc, struct pfs_node *pd, struct pfs_node **pn, struct proc **p) argument
761 struct proc *p, *proc; local
881 struct proc *proc = NULL; local
977 struct proc *proc; local
[all...]

Completed in 241 milliseconds

1234567891011>>