diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-05-06 17:00:30 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-05-06 17:00:30 +0000 |
commit | 7d3d5e3b1860d973c8784bcf03f0179a0951ec1f (patch) | |
tree | bf14aeb61891db86cbe4109dcfd396769af93ff4 /proc/wait.c | |
parent | 2da19178da9ffecf48f0d154dc9c6bf43d5072f9 (diff) |
Formerly wait.c.~4~
Diffstat (limited to 'proc/wait.c')
-rw-r--r-- | proc/wait.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/proc/wait.c b/proc/wait.c index 345a0e18..2674c408 100644 --- a/proc/wait.c +++ b/proc/wait.c @@ -131,7 +131,7 @@ abort_wait (struct proc *p) } /* Implement proc_wait as described in <hurd/proc.defs>. */ -error_t +kern_return_t S_proc_wait (struct proc *p, mach_port_t reply_port, mach_msg_type_name_t reply_port_type, @@ -217,7 +217,7 @@ S_proc_wait (struct proc *p, } /* Implement proc_mark_stop as described in <hurd/proc.defs>. */ -error_t +kern_return_t S_proc_mark_stop (struct proc *p, int signo) { @@ -251,7 +251,7 @@ S_proc_mark_stop (struct proc *p, } /* Implement proc_mark_exit as described in <hurd/proc.defs>. */ -error_t +kern_return_t S_proc_mark_exit (struct proc *p, int status) { @@ -264,7 +264,7 @@ S_proc_mark_exit (struct proc *p, } /* Implement proc_mark_cont as described in <hurd/proc.defs>. */ -error_t +kern_return_t S_proc_mark_cont (struct proc *p) { p->p_stopped = 0; @@ -272,7 +272,7 @@ S_proc_mark_cont (struct proc *p) } /* Implement proc_mark_traced as described in <hurd/proc.defs>. */ -error_t +kern_return_t S_proc_mark_traced (struct proc *p) { p->p_traced = 1; @@ -280,7 +280,7 @@ S_proc_mark_traced (struct proc *p) } /* Implement proc_mark_nostopchild as described in <hurd/proc.defs>. */ -error_t +kern_return_t S_proc_mod_stopchild (struct proc *p, int value) { @@ -300,7 +300,7 @@ zombie_check_pid (pid_t pid) } /* Implement interrupt_operation as described in <hurd/interrupt.defs>. */ -error_t +kern_return_t S_interrupt_operation (mach_port_t object) { struct proc *p = reqport_find (object); |