summaryrefslogtreecommitdiff
path: root/proc/notify.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-05-06 17:11:48 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-05-06 17:11:48 +0000
commit527c345b5e5f3c5ff733c70cba7b3c430b3ca3dc (patch)
tree6e7a99dd47266ba05bb8117c90474f831453bfc3 /proc/notify.c
parentab4b446e7fc5d599b1ff70dd6deb0c9accf10350 (diff)
Formerly notify.c.~3~
Diffstat (limited to 'proc/notify.c')
-rw-r--r--proc/notify.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/proc/notify.c b/proc/notify.c
index 1a478fe0..45d6c6c0 100644
--- a/proc/notify.c
+++ b/proc/notify.c
@@ -35,7 +35,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* We ask for dead name notifications to detect when tasks and
message ports die. Both notifications get sent to the process
port. */
-error_t
+kern_return_t
do_mach_notify_dead_name (mach_port_t notify,
mach_port_t deadport)
{
@@ -60,7 +60,7 @@ do_mach_notify_dead_name (mach_port_t notify,
/* We get no-senders notifications on exception ports that we
handle through proc_handle_exceptions. */
-error_t
+kern_return_t
do_mach_notify_no_senders (mach_port_t notify,
mach_port_mscount_t mscount)
{
@@ -78,28 +78,28 @@ do_mach_notify_no_senders (mach_port_t notify,
return 0;
}
-error_t
+kern_return_t
do_mach_notify_port_deleted (mach_port_t notify,
mach_port_t name)
{
return 0;
}
-error_t
+kern_return_t
do_mach_notify_msg_accepted (mach_port_t notify,
mach_port_t name)
{
return 0;
}
-error_t
+kern_return_t
do_mach_notify_port_destroyed (mach_port_t notify,
mach_port_t name)
{
return 0;
}
-error_t
+kern_return_t
do_mach_notify_send_once (mach_port_t notify)
{
return 0;