Lines Matching defs:utmpx
57 #include <utmpx.h>
2874 static struct utmpx utmpx;
2880 (void) strncpy(utmpx.ut_user, name, sizeof (utmpx.ut_user));
2881 (void) strncpy(utmpx.ut_id, ifname, sizeof (utmpx.ut_id));
2882 (void) strncpy(utmpx.ut_line, line, sizeof (utmpx.ut_line));
2884 utmpx.ut_pid = getpid();
2885 utmpx.ut_type = USER_PROCESS;
2887 utmpx.ut_type = DEAD_PROCESS;
2889 (void) gettimeofday(&utmpx.ut_tv, NULL);
2890 updwtmpx("/var/adm/wtmpx", &utmpx);