Lines Matching refs:utx
89 struct utmpx *utx;
91 utx = (struct utmpx *) nbuf;
95 (void) strcpy(utx->ut_user, ut->ut_name);
96 (void) memset(utx->ut_id, 0, sizeof (utx->ut_id));
97 (void) strcpy(utx->ut_line, ut->ut_line);
98 utx->ut_pid = 0;
99 if ((strcmp(utx->ut_user, "") == 0) &&
100 (strcmp(utx->ut_host, "") == 0))
101 utx->ut_type = DEAD_PROCESS;
103 utx->ut_type = USER_PROCESS;
104 utx->ut_exit.e_termination = 0;
105 utx->ut_exit.e_exit = 0;
106 utx->ut_tv.tv_sec = ut->ut_time;
107 utx->ut_tv.tv_usec = 0;
108 utx->ut_session = 0;
109 utx->ut_syslen = sizeof (ut->ut_name) + 1;
110 (void) strcpy(utx->ut_host, ut->ut_host);
112 utx++;
114 return ((char *) utx - nbuf);