summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/getppid.c
blob: a1e7cdfcef30087b7a7cf613ab191a1ac7906875 (plain) (tree)
1
2
3
4
5
6
7
8






                                             
                    


                   
                   
 



                            
   

                                                                  



                           
/**
 *  @file
 *
 *  @brief Get Process and Parent Process IDs
 *  @ingroup libcsupport
 */

#ifdef 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;
}