5d7f5fccf5
. remove or optionalify some pci debugging stuff
13 lines
232 B
C
13 lines
232 B
C
#include "syslib.h"
|
|
|
|
int sys_privctl(int proc, int request, int i, void *p)
|
|
{
|
|
message m;
|
|
|
|
m.CTL_ENDPT = proc;
|
|
m.CTL_REQUEST = request;
|
|
m.CTL_MM_PRIV = i;
|
|
m.CTL_ARG_PTR = p;
|
|
|
|
return _taskcall(SYSTASK, SYS_PRIVCTL, &m);
|
|
}
|