This commit is contained in:
rsc 2004-04-19 19:29:25 +00:00
parent 0e3cc9f456
commit a84cbb2a17
53 changed files with 12038 additions and 0 deletions

43
src/libmach/FreeBSD.c Normal file
View file

@ -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)
{
}