summaryrefslogtreecommitdiff
path: root/lib/mlibc/options/linux/include/utmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/options/linux/include/utmp.h')
-rw-r--r--lib/mlibc/options/linux/include/utmp.h84
1 files changed, 84 insertions, 0 deletions
diff --git a/lib/mlibc/options/linux/include/utmp.h b/lib/mlibc/options/linux/include/utmp.h
new file mode 100644
index 0000000..e83d7a5
--- /dev/null
+++ b/lib/mlibc/options/linux/include/utmp.h
@@ -0,0 +1,84 @@
+#ifndef _UTMP_H
+#define _UTMP_H
+
+#include <abi-bits/pid_t.h>
+#include <bits/posix/timeval.h>
+#include <bits/types.h>
+#include <paths.h>
+
+#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
+
+#define WTMP_FILE _PATH_WTMP
+#define WTMP_FILENAME _PATH_WTMP
+
+#define UTMP_FILE _PATH_UTMP
+#define UTMP_FILENAME _PATH_UTMP
+
+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;
+ __mlibc_int32 ut_addr_v6[4];
+ char __unused[20];
+};
+
+struct lastlog {
+ time_t ll_time;
+ char ll_line[UT_LINESIZE];
+ char ll_host[UT_HOSTSIZE];
+};
+
+/* 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]
+
+#ifndef __MLIBC_ABI_ONLY
+
+void setutent(void);
+struct utmp *getutent(void);
+int getutent_r(struct utmp *, struct utmp **);
+void endutent(void);
+struct utmp *pututline(const struct utmp *);
+struct utmp *getutline(const struct utmp *);
+struct utmp *getutid(const struct utmp *);
+int utmpname(const char *);
+
+#endif /* !__MLIBC_ABI_ONLY */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // _UTMP_H