source: trunk/minix/lib/other/_getprocnr.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 326 bytes
Line 
1#include <lib.h>
2#define getprocnr _getprocnr
3#include <unistd.h>
4
5
6PUBLIC int getprocnr()
7{
8 message m;
9 m.m1_i1 = -1; /* don't pass pid to search for */
10 m.m1_i2 = 0; /* don't pass name to search for */
11 if (_syscall(PM_PROC_NR, GETPROCNR, &m) < 0) return(-1);
12 return(m.m1_i1); /* return own process number */
13}
14
Note: See TracBrowser for help on using the repository browser.