The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/utmp.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* The <utmp.h> header is used by init, login, who, etc. */
    2 
    3 #ifndef _UTMP_H
    4 #define _UTMP_H
    5 
    6 #define WTMP  "/usr/adm/wtmp"   /* the login history file */
    7 #define BTMP  "/usr/adm/btmp"   /* the bad-login history file */
    8 #define UTMP  "/etc/utmp"       /* the user accouting file */
    9 
   10 struct utmp {
   11   char ut_user[8];              /* user name */
   12   char ut_id[4];                /* /etc/inittab ID */
   13   char ut_line[12];             /* terminal name */
   14   char ut_host[16];             /* host name, when remote */
   15   short ut_pid;                 /* process id */
   16   short int ut_type;            /* type of entry */
   17   long ut_time;                 /* login/logout time */
   18 };
   19 
   20 #define ut_name ut_user         /* for compatibility with other systems */
   21 
   22 /* Definitions for ut_type. */
   23 #define RUN_LVL            1    /* this is a RUN_LEVEL record */
   24 #define BOOT_TIME          2    /* this is a REBOOT record */
   25 #define INIT_PROCESS       5    /* this process was spawned by INIT */
   26 #define LOGIN_PROCESS      6    /* this is a 'getty' process waiting */
   27 #define USER_PROCESS       7    /* any other user process */
   28 #define DEAD_PROCESS       8    /* this process has died (wtmp only) */
   29 
   30 #endif /* _UTMP_H */

Cache object: bc64da9a653385728d145888b38a580f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.