URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libc/] [sys/] [netware/] [getpid.c] - Rev 326
Go to most recent revision | Compare with Previous | Blame | View Log
/* NetWare version of getpid. This is supposed to return a unique identifier which is used to create temporary file names. We use the thread ID. I hope this is unique. */ #include <unistd.h> pid_t getpid () { return GetThreadID (); }
Go to most recent revision | Compare with Previous | Blame | View Log