aboutsummaryrefslogtreecommitdiff
path: root/src/libmach/FreeBSD.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmach/FreeBSD.c')
-rw-r--r--src/libmach/FreeBSD.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/libmach/FreeBSD.c b/src/libmach/FreeBSD.c
new file mode 100644
index 00000000..2838b392
--- /dev/null
+++ b/src/libmach/FreeBSD.c
@@ -0,0 +1,43 @@
+/*
+ * process interface for FreeBSD
+ */
+
+#include <u.h>
+#include <sys/ptrace.h>
+#include <sys/types.h>
+#include <sys/wait.h>
+#include <signal.h>
+#include <errno.h>
+#include <libc.h>
+#include <mach.h>
+#include "ureg386.h"
+
+void
+unmapproc(Map*)
+{
+}
+
+int
+mapproc(int, Map*, Regs**)
+{
+}
+
+int
+detachproc(int)
+{
+}
+
+int
+procnotes(int, char***)
+{
+}
+
+int
+ctlproc(int, char*)
+{
+}
+
+char*
+proctextfile(int)
+{
+}