Lines Matching refs:entryx
619 struct utmpx entryx; in single() local
621 entryx.ut_tv.tv_sec = time(NULL); in single()
622 entryx.ut_type = USER_PROCESS; in single()
623 entryx.ut_pid = getpid(); in single()
624 (void) strcpy(entryx.ut_user, "root"); in single()
625 (void) strcpy(entryx.ut_line, ttyn); in single()
626 entryx.ut_tv.tv_usec = 0; in single()
627 entryx.ut_session = 0; in single()
628 entryx.ut_id[0] = 'c'; in single()
629 entryx.ut_id[1] = 'o'; in single()
630 entryx.ut_id[2] = 's'; in single()
631 entryx.ut_id[3] = 'u'; in single()
632 entryx.ut_syslen = 1; in single()
633 entryx.ut_host[0] = '\0'; in single()
634 entryx.ut_exit.e_termination = WTERMSIG(0); in single()
635 entryx.ut_exit.e_exit = WEXITSTATUS(0); in single()
636 (void) pututxline(&entryx); in single()