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

Subversion Repositories or1k

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  geteuid.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
uid_t _POSIX_types_Euid = 0;
22
*/
23
 
24
/*PAGE
25
 *
26
 *  4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
27
 *        P1003.1b-1993, p. 84
28
 */
29
 
30
uid_t geteuid( void )
31
{
32
  return _POSIX_types_Euid;
33
}

powered by: WebSVN 2.1.0

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