Blob


1 /*
2 * process interface for FreeBSD
3 */
5 #include <u.h>
6 #include <sys/ptrace.h>
7 #include <sys/types.h>
8 #include <sys/wait.h>
9 #include <signal.h>
10 #include <errno.h>
11 #include <libc.h>
12 #include <mach.h>
13 #include "ureg386.h"
15 void
16 unmapproc(Map*)
17 {
18 }
20 int
21 mapproc(int, Map*, Regs**)
22 {
23 }
25 int
26 detachproc(int)
27 {
28 }
30 int
31 procnotes(int, char***)
32 {
33 }
35 int
36 ctlproc(int, char*)
37 {
38 }
40 char*
41 proctextfile(int)
42 {
43 }