mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
60 lines
688 B
C
60 lines
688 B
C
|
/*
|
||
|
* process non-interface
|
||
|
*/
|
||
|
|
||
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include <mach.h>
|
||
|
|
||
|
void
|
||
|
unmapproc(Map *m)
|
||
|
{
|
||
|
USED(m);
|
||
|
}
|
||
|
|
||
|
int
|
||
|
mapproc(int pid, Map *m, Regs **r)
|
||
|
{
|
||
|
USED(pid);
|
||
|
USED(m);
|
||
|
USED(r);
|
||
|
if(r)
|
||
|
*r = nil;
|
||
|
werrstr("mapproc not implemented");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
detachproc(int pid)
|
||
|
{
|
||
|
USED(pid);
|
||
|
werrstr("detachproc not implemented");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
procnotes(int pid, char ***notes)
|
||
|
{
|
||
|
USED(pid);
|
||
|
USED(notes);
|
||
|
werrstr("procnotes not implemented");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
ctlproc(int pid, char *msg)
|
||
|
{
|
||
|
USED(pid);
|
||
|
USED(msg);
|
||
|
werrstr("ctlproc not implemented');
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
char*
|
||
|
proctextfile(int pid)
|
||
|
{
|
||
|
USED(pid);
|
||
|
werrstr("proctextfile not implemented");
|
||
|
return -1;
|
||
|
}
|