source: rtems/cpukit/libcsupport/src/setsid.c @ e02d5dd9

4.115
Last change on this file since e02d5dd9 was cefc9aea, checked in by Alex Ivanov <alexivanov97@…>, on 12/15/12 at 12:23:36

libcsupport: Doxygen Enhancement Task #8

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

  • Property mode set to 100644
File size: 346 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief Create Session and Set Process Group ID
5 *  @ingroup libcsupport
6 */
7
8#if HAVE_CONFIG_H
9#include "config.h"
10#endif
11
12#include <unistd.h>
13
14#include <rtems/seterr.h>
15
16/**
17 *  4.3.2 Create Session and Set Process Group ID, P1003.1b-1993, p. 88
18 */
19pid_t setsid( void )
20{
21  rtems_set_errno_and_return_minus_one( EPERM );
22}
Note: See TracBrowser for help on using the repository browser.