URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [syscalls/] [sysgetpid.c] - Rev 1775
Go to most recent revision | Compare with Previous | Blame | View Log
/* connector for getpid */ #include <reent.h> int getpid () { #ifdef REENTRANT_SYSCALLS_PROVIDED return _getpid_r (_REENT); #else return _getpid (); #endif }
Go to most recent revision | Compare with Previous | Blame | View Log