2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
pid_t getppid(void)
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2011-02-17 18:11:09 +01:00
|
|
|
/* POSIX says that this function is always successful and that no
|
|
|
|
* return value is reserved to indicate an error. Minix syscalls
|
|
|
|
* are not always successful and Minix returns the reserved value
|
|
|
|
* (pid_t) -1 when there is an error.
|
|
|
|
*/
|
2014-05-13 15:05:05 +02:00
|
|
|
if (_syscall(PM_PROC_NR, PM_GETPID, &m) < 0) return(-1);
|
|
|
|
return(m.m_pm_lc_getpid.parent_pid);
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|