2 * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
53 * File: ipc/ipc_notify.c
57 * Notification-sending functions.
60 #include <mach/port.h>
61 #include <mach/message.h>
62 #include <mach/mach_notify.h>
63 #include <kern/misc_protos.h>
64 #include <ipc/ipc_notify.h>
65 #include <ipc/ipc_port.h>
68 * Routine: ipc_notify_port_deleted
70 * Send a port-deleted notification.
73 * Consumes a ref/soright for port.
77 ipc_notify_port_deleted(
79 mach_port_name_t name
)
83 kr
= mach_notify_port_deleted(port
, name
);
84 if (kr
!= KERN_SUCCESS
) {
85 printf("dropped port-deleted (0x%08x, 0x%x)\n", port
, name
);
86 ipc_port_release_sonce(port
);
91 * Routine: ipc_notify_port_destroyed
93 * Send a port-destroyed notification.
96 * Consumes a ref/soright for port.
97 * Consumes a ref for right, which should be a receive right
98 * prepped for placement into a message. (In-transit,
99 * or in-limbo if a circularity was detected.)
103 ipc_notify_port_destroyed(
109 kr
= mach_notify_port_destroyed(port
, right
);
110 if (kr
!= KERN_SUCCESS
) {
111 printf("dropped port-destroyed (0x%08x, 0x%08x)\n",
113 ipc_port_release_sonce(port
);
114 ipc_port_release_receive(right
);
119 * Routine: ipc_notify_no_senders
121 * Send a no-senders notification.
124 * Consumes a ref/soright for port.
128 ipc_notify_no_senders(
130 mach_port_mscount_t mscount
)
134 kr
= mach_notify_no_senders(port
, mscount
);
135 if (kr
!= KERN_SUCCESS
) {
136 printf("dropped no-senders (0x%08x, %u)\n", port
, mscount
);
137 ipc_port_release_sonce(port
);
142 * Routine: ipc_notify_send_once
144 * Send a send-once notification.
147 * Consumes a ref/soright for port.
151 ipc_notify_send_once(
156 kr
= mach_notify_send_once(port
);
157 if (kr
!= KERN_SUCCESS
) {
158 printf("dropped send-once (0x%08x)\n", port
);
159 ipc_port_release_sonce(port
);
164 * Routine: ipc_notify_dead_name
166 * Send a dead-name notification.
169 * Consumes a ref/soright for port.
173 ipc_notify_dead_name(
175 mach_port_name_t name
)
179 kr
= mach_notify_dead_name(port
, name
);
180 if (kr
!= KERN_SUCCESS
) {
181 printf("dropped dead-name (0x%08x, 0x%x)\n", port
, name
);
182 ipc_port_release_sonce(port
);