URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [netware/] [getpid.c] - Rev 823
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