Files
rtems/cpukit/libcsupport/src/getppid.c
T
Sebastian Huber a2e3f33f39 score: Create object implementation header
Move implementation specific parts of object.h and object.inl into new
header file objectimpl.h.  The object.h contains now only the
application visible API.
2013-07-26 11:55:47 +02:00

26 lines
372 B
C

/**
* @file
*
* @brief Get Process and Parent Process IDs
* @ingroup libcsupport
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#include <rtems/system.h>
#include <rtems/seterr.h>
pid_t _POSIX_types_Ppid = 0;
/**
* 4.1.1 Get Process and Parent Process IDs, P1003.1b-1993, p. 83
*/
pid_t getppid( void )
{
return _POSIX_types_Ppid;
}