summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-11-18 12:33:53 +0000
committerRoland McGrath <roland@gnu.org>1994-11-18 12:33:53 +0000
commita8ba28498ef65ee65808dd943519db03e9e700bc (patch)
treec63d14bdd92f1023cb7909f25afbba4025ba175d /auth
parenta72530d52c9307a5c7c3063ed736ab8e2983fcfc (diff)
Include "notify_S.h".
Remove _S_ from all do_mach_notify_* server routines.
Diffstat (limited to 'auth')
-rw-r--r--auth/auth.c38
1 files changed, 17 insertions, 21 deletions
diff --git a/auth/auth.c b/auth/auth.c
index 5b51e5e7..ced121fc 100644
--- a/auth/auth.c
+++ b/auth/auth.c
@@ -21,6 +21,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "auth_S.h"
#include "auth_reply_U.h"
+#include "notify_S.h"
#include <hurd/startup.h>
#include <mach/error.h>
#include <errno.h>
@@ -146,7 +147,7 @@ main (int argc, char **argv)
/* Called when an auth port has no more senders. */
error_t
-_S_do_mach_notify_no_senders (mach_port_t notify,
+do_mach_notify_no_senders (mach_port_t notify,
mach_port_mscount_t mscount)
{
auth_nosenders (convert_auth_to_apt (notify));
@@ -614,43 +615,38 @@ convert_auth_to_apt (auth_t auth)
return a;
return 0;
}
-
+
/* Unneeded notification stubs: */
-error_t
-_S_do_mach_notify_port_deleted (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+kern_return_t
+do_mach_notify_port_deleted (mach_port_t notify,
+ mach_port_t name)
{
return 0;
}
-error_t
-_S_do_mach_notify_msg_accepted (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+kern_return_t
+do_mach_notify_msg_accepted (mach_port_t notify,
+ mach_port_t name)
{
return 0;
}
-error_t
-_S_do_mach_notify_port_destroyed (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+kern_return_t
+do_mach_notify_port_destroyed (mach_port_t notify,
+ mach_port_t name)
{
return 0;
}
-error_t
-_S_do_mach_notify_send_once (mach_port_t notify,
- mach_port_seqno_t seqno)
+kern_return_t
+do_mach_notify_send_once (mach_port_t notify)
{
return 0;
}
-error_t
-_S_do_mach_notify_dead_name (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+kern_return_t
+do_mach_notify_dead_name (mach_port_t notify,
+ mach_port_t name)
{
return 0;
}