source: rtems/cpukit/posix/src/setpgid.c @ 811fae1

4.104.114.84.95
Last change on this file since 811fae1 was 811fae1, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 19:24:38

Split types.s into individual files.

  • Property mode set to 100644
File size: 366 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <limits.h>
6#include <errno.h>
7#include <string.h>
8#include <sys/types.h>
9
10#include <rtems/system.h>
11#include <rtems/score/object.h>
12#include <rtems/posix/seterr.h>
13
14/*PAGE
15 *
16 *  4.3.3 Set Process Group ID for Job Control, P1003.1b-1993, p. 89
17 */
18
19int setpgid(
20  pid_t  pid,
21  pid_t  pgid
22)
23{
24  set_errno_and_return_minus_one( ENOSYS );
25}
Note: See TracBrowser for help on using the repository browser.