summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getppid.c
blob: ad2e88376e7ea329d1a5999dfd844984ec511ea0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 *  @file
 *
 *  @brief Get Process and Parent Process IDs
 *  @ingroup libcsupport
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <unistd.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;
}