mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-29 14:40:55 +08:00
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.
26 lines
372 B
C
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;
|
|
}
|