home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / lib / mac / getpid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-08  |  169 b   |  13 lines  |  [TEXT/JRRK]

  1. #include <Processes.h>
  2. #include <sys/types.h>
  3.  
  4. pid_t getpid(void)
  5.     {
  6.     ProcessSerialNumber mysn;
  7.     mysleep(1);
  8.     GetCurrentProcess(&mysn);
  9.     return mysn.lowLongOfPSN;
  10.     }
  11.  
  12.     
  13.