OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [getgid.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  getgid.c,v 1.6 2002/04/03 14:21:44 joel Exp
3
 */
4
 
5
#if HAVE_CONFIG_H
6
#include "config.h"
7
#endif
8
 
9
#include <limits.h>
10
#include <string.h>
11
#include <sys/types.h>
12
 
13
#include <rtems/system.h>
14
#include <rtems/score/object.h>
15
#include <rtems/seterr.h>
16
 
17
#include <rtems/userenv.h>
18
 
19
/*
20
 * MACRO in userenv.h
21
 *
22
gid_t _POSIX_types_Gid = 0;
23
*/
24
 
25
/*PAGE
26
 *
27
 *  4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
28
 *        P1003.1b-1993, p. 84
29
 */
30
 
31
gid_t getgid( void )
32
{
33
  return _POSIX_types_Gid;
34
}
35
 
36
/*PAGE
37
 *
38
 *  4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
39
 */
40
 
41
int setgid(
42
  gid_t  gid
43
)
44
{
45
  _POSIX_types_Gid = gid;
46
  return 0;
47
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.