home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Portable Patmos 1.1
/
patmos-src
/
src
/
getpid.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-01-19
|
156 b
|
12 lines
|
[
TEXT/KAHL
]
#include <Processes.h>
#include <sys/types.h>
pid_t getpid(void)
{
ProcessSerialNumber mysn;
GetCurrentProcess(&mysn);
return mysn.lowLongOfPSN;
}