mlibc/options/linux/include/utmp.h

59 lines
947 B
C
Raw Normal View History

2018-05-17 16:21:47 +02:00
#ifndef _UTMP_H
#define _UTMP_H
2020-04-06 18:56:37 +02:00
#include <bits/types.h>
2018-05-17 16:21:47 +02:00
#ifdef __cplusplus
extern "C" {
#endif
#define EMPTY 0
#define RUN_LVL 1
#define BOOT_TIME 2
#define NEW_TIME 3
#define OLD_TIME 4
#define INIT_PROCESS 5
#define LOGIN_PROCESS 6
#define USER_PROCESS 7
#define DEAD_PROCESS 8
#define ACCOUNTING 9
#define UT_LINESIZE 32
#define UT_NAMESIZE 32
#define UT_HOSTSIZE 256
struct exit_status {
short int e_termination;
short int e_exit;
};
struct utmp {
short ut_type;
pid_t ut_pid;
char ut_line[UT_LINESIZE];
char ut_id[4];
char ut_user[UT_NAMESIZE];
char ut_host[UT_HOSTSIZE];
struct exit_status ut_exit;
long ut_session;
struct timeval ut_tv;
2020-04-06 18:56:37 +02:00
__mlibc_int32_t ut_addr_v6[4];
2018-05-17 16:21:47 +02:00
char __unused[20];
};
/* Hacks for compability reasons */
#define ut_name ut_user
#ifndef _NO_UT_TIME
#define ut_time ut_tv.tv_sec
#endif
#define ut_xtime ut_tv.tv_sec
#define ut_addr ut_addr_v6[0]
#ifdef __cplusplus
}
#endif
#endif // _UTMP_H