minix/lib/libc/other/_getnpid.c
2010-06-08 13:58:01 +00:00

11 lines
223 B
C

#include <lib.h>
#define getnpid _getnpid
#include <unistd.h>
PUBLIC pid_t getnpid(endpoint_t proc_ep)
{
message m;
m.m1_i1 = proc_ep; /* search pid for this process */
return _syscall(PM_PROC_NR, GETEPINFO, &m);
}