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

Subversion Repositories or1k

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  getlogin.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
#include <errno.h>
13
 
14
#include <rtems/system.h>
15
#include <rtems/score/object.h>
16
#include <rtems/seterr.h>
17
#include <rtems/userenv.h>
18
 
19
#include <unistd.h>
20
#include <pwd.h>
21
 
22
/*PAGE
23
 *
24
 *  4.2.4 Get User Name, P1003.1b-1993, p. 87
25
 *
26
 *  NOTE:  P1003.1c/D10, p. 49 adds getlogin_r().
27
 */
28
 
29
/*
30
 * MACRO in userenv.h
31
 *
32
static char _POSIX_types_Getlogin_buffer[ LOGIN_NAME_MAX ];
33
*/
34
 
35
char *getlogin( void )
36
{
37
  (void) getlogin_r( _POSIX_types_Getlogin_buffer, LOGIN_NAME_MAX );
38
  return _POSIX_types_Getlogin_buffer;
39
}
40
 
41
/*PAGE
42
 *
43
 *  4.2.4 Get User Name, P1003.1b-1993, p. 87
44
 *
45
 *  NOTE:  P1003.1c/D10, p. 49 adds getlogin_r().
46
 */
47
 
48
int getlogin_r(
49
  char   *name,
50
  size_t  namesize
51
)
52
{
53
  struct passwd *pw;
54
  if ( namesize < LOGIN_NAME_MAX )
55
    return ERANGE;
56
 
57
  pw=getpwuid(getuid());
58
  if (!pw) {
59
   strcpy(name,"");
60
  } else {
61
   strncpy(name,pw->pw_name,LOGIN_NAME_MAX);
62
  };
63
  return 0;
64
}

powered by: WebSVN 2.1.0

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