Files
rtems/cpukit/libcsupport/src/getpid.c
Sebastian Huber 80cf60efec Canonicalize config.h include
Use the following variant which was already used by most source files:

  #ifdef HAVE_CONFIG_H
  #include "config.h"
  #endif
2020-04-16 07:30:00 +02:00

39 lines
576 B
C

/**
* @file
*
* @brief Process and Parent Process IDs
* @ingroup libcsupport
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#include <rtems.h>
#include <rtems/seterr.h>
/**
* 4.1.1 Get Process and Parent Process IDs, P1003.1b-1993, p. 83
*/
pid_t getpid( void )
{
return rtems_object_get_local_node();
}
#if defined(RTEMS_NEWLIB) && !defined(HAVE__GETPID_R)
#include <reent.h>
/**
* This is the Newlib dependent reentrant version of getpid().
*/
pid_t _getpid_r(
struct _reent *ptr RTEMS_UNUSED
)
{
return getpid();
}
#endif