diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-04-05 17:40:24 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-04-06 18:09:38 +0200 |
commit | e9687ec4ff525ae4a88314ba4ae97da770bd012f (patch) | |
tree | 9f434a3d390fc926d396c6958594e406090b7e46 /proc/notify.c | |
parent | e27425e63392683b85101961489a83e0abef133b (diff) | |
download | hurd-e9687ec4ff525ae4a88314ba4ae97da770bd012f.tar.gz hurd-e9687ec4ff525ae4a88314ba4ae97da770bd012f.tar.bz2 hurd-e9687ec4ff525ae4a88314ba4ae97da770bd012f.zip |
libports: fix notify_port_t receiver lookups
* libports/Makefile (MIGSFLAGS): Include mig-mutate.h.
* libports/mig-decls.h: New file.
* libports/mig-mutate.h: Likewise.
* libports/notify-dead-name.c: Fix receiver lookups.
* libports/notify-no-senders.c: Likewise.
* libports/notify-msg-accepted.c: Adjust function declaration.
* libports/notify-port-deleted.c: Likewise.
* libports/notify-port-destroyed.c: Likewise.
* libports/notify-send-once.c: Likewise.
* libports/ports.h: Likewise.
* proc/Makefile (MIGSFLAGS): Include mig-mutate.h, move PROCESS mutators...
* proc/mig-mutate.h: ... into a new file, add NOTIFY mutators.
* proc/notify.c: Fix receiver lookups, adjust function declarations.
* term/devio.c (ports_do_mach_notify_send_once): Adjust accordingly.
Diffstat (limited to 'proc/notify.c')
-rw-r--r-- | proc/notify.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/proc/notify.c b/proc/notify.c index 5a112b07..b6731ae5 100644 --- a/proc/notify.c +++ b/proc/notify.c @@ -36,33 +36,33 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ message ports die. Both notifications get sent to the process port. */ kern_return_t -do_mach_notify_dead_name (mach_port_t notify, +do_mach_notify_dead_name (struct port_info *pi, mach_port_t deadport) { struct proc *p; - if (notify == generic_port) + if (pi->port_right == generic_port) { check_dead_execdata_notify (deadport); mach_port_deallocate (mach_task_self (), deadport); return 0; } - p = ports_lookup_port (proc_bucket, notify, proc_class); + p = (struct proc *) pi; - if (!p) + if (!p + || p->p_pi.bucket != proc_bucket + || p->p_pi.class != proc_class) return EOPNOTSUPP; if (p->p_task == deadport) { process_has_exited (p); - ports_port_deref (p); mach_port_deallocate (mach_task_self (), deadport); return 0; } else { - ports_port_deref (p); return EINVAL; } } @@ -70,35 +70,35 @@ do_mach_notify_dead_name (mach_port_t notify, /* We get no-senders notifications on exception ports that we handle through proc_handle_exceptions. */ kern_return_t -do_mach_notify_no_senders (mach_port_t notify, +do_mach_notify_no_senders (struct port_info *pi, mach_port_mscount_t mscount) { - return ports_do_mach_notify_no_senders (notify, mscount); + return ports_do_mach_notify_no_senders (pi, mscount); } kern_return_t -do_mach_notify_port_deleted (mach_port_t notify, +do_mach_notify_port_deleted (struct port_info *pi, mach_port_t name) { return 0; } kern_return_t -do_mach_notify_msg_accepted (mach_port_t notify, +do_mach_notify_msg_accepted (struct port_info *pi, mach_port_t name) { return 0; } kern_return_t -do_mach_notify_port_destroyed (mach_port_t notify, +do_mach_notify_port_destroyed (struct port_info *pi, mach_port_t name) { return 0; } kern_return_t -do_mach_notify_send_once (mach_port_t notify) +do_mach_notify_send_once (struct port_info *pi) { return 0; } |