summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/getpgrp.c
blob: de372f3e8c72272163c20e74b3f852eed4df215b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <unistd.h>
#include <rtems.h>

/*
 *  4.3.1 Get Process Group IDs, P1003.1b-1993, p. 89
 */

pid_t getpgrp( void )
{
  /*
   *  This always succeeds and returns the process group id.  For rtems,
   *  this will always be the local node;
   */

  return rtems_object_get_local_node();
}