source: rtems/cpukit/libcsupport/src/setpgid.c @ e22af78

4.115
Last change on this file since e22af78 was bcd0ea64, checked in by Alex Ivanov <alexivanov97@…>, on 12/09/12 at 22:55:17

libcsupport: Doxygen enhancement task #2

http://www.google-melange.com/gci/task/view/google/gci2012/8017203

  • Property mode set to 100644
File size: 430 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 __attribute__((unused)),
21  pid_t  pgid __attribute__((unused))
22)
23{
24  rtems_set_errno_and_return_minus_one( ENOSYS );
25}
Note: See TracBrowser for help on using the repository browser.