Lines Matching refs:status
268 time_t st_ctime; /* time of last status change */
271 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
272 #define WIFEXITED(status) (((status) & 0x7f) == 0)
439 "call main\n" // main() returns the status code, we'll exit with it.
627 "call main\n" // main() returns the status code in %eax
813 "bl main\n" // main() returns the status code, we'll exit with it.
1009 "bl main\n" // main() returns the status code, we'll exit with it.
1212 "jal main\n" // main() returns the status code, we'll exit with it.
1411 "call main\n" // main() returns the status code, we'll exit with it.
1445 long st_ctime; /* Time of last status change. */
1466 void sys_exit(int status)
1468 my_syscall1(__NR_exit, status & 255);
1759 pid_t sys_wait4(pid_t pid, int *status, int options, struct rusage *rusage)
1761 return my_syscall4(__NR_wait4, pid, status, options, rusage);
1765 pid_t sys_waitpid(pid_t pid, int *status, int options)
1767 return sys_wait4(pid, status, options, 0);
1771 pid_t sys_wait(int *status)
1773 return sys_waitpid(-1, status, 0);
1801 void exit(int status)
1803 sys_exit(status);
2241 pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage)
2243 pid_t ret = sys_wait4(pid, status, options, rusage);
2253 pid_t waitpid(pid_t pid, int *status, int options)
2255 pid_t ret = sys_waitpid(pid, status, options);
2265 pid_t wait(int *status)
2267 pid_t ret = sys_wait(status);