source: rtems/cpukit/libcsupport/src/setpgid.c @ 1c6926c1

5
Last change on this file since 1c6926c1 was f97536d, checked in by Sebastian Huber <sebastian.huber@…>, on 10/16/15 at 06:21:48

basdefs.h: Add and use RTEMS_UNUSED

  • Property mode set to 100644
File size: 411 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief Set Process Group ID for Job Control
5 *  @ingroup libcsupport
6 */
7
8#if HAVE_CONFIG_H
9#include "config.h"
10#endif
11
12#include <unistd.h>
13#include <errno.h>
14#include <rtems/seterr.h>
15
16/**
17 *  4.3.3 Set Process Group ID for Job Control, P1003.1b-1993, p. 89
18 */
19int setpgid(
20  pid_t  pid,
21  pid_t  pgid
22)
23{
24  (void) pid;
25  (void) pgid;
26  rtems_set_errno_and_return_minus_one( ENOSYS );
27}
Note: See TracBrowser for help on using the repository browser.