summaryrefslogtreecommitdiff
path: root/trans
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-06-21 17:22:54 +0000
committerRoland McGrath <roland@gnu.org>1996-06-21 17:22:54 +0000
commitaca630f9d74a57b9199fee1e2c721b4821704f2e (patch)
tree94e28bda8a0184eed56ceac9c5a490701b5fdf23 /trans
parentfaef463e817867b4e74159c97bcd041899c26c5d (diff)
typo fixes
Diffstat (limited to 'trans')
-rw-r--r--trans/crash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/trans/crash.c b/trans/crash.c
index 812c2543..eec85b54 100644
--- a/trans/crash.c
+++ b/trans/crash.c
@@ -103,8 +103,8 @@ S_crash_dump_task (mach_port_t port,
{
struct crasher *c;
- err = ports_create_port (port_bucket, sizeof *c,
- crasher_portclass, &c);
+ err = ports_create_port (crasher_portclass, port_bucket,
+ sizeof *c, &c);
if (! err)
{
/* Install our port as the crasher's msgport.
@@ -198,7 +198,7 @@ signal_crasher (struct crasher *c, int signo, mach_port_t refport)
kern_return_t
S_msg_sig_post (mach_port_t port,
mach_port_t reply_port, mach_msg_type_name_t reply_type,
- int signo, mach_port_t refport)
+ int signo, natural_t sigcode, mach_port_t refport)
{
struct crasher *c = ports_lookup_port (port_bucket, port, crasher_portclass);
@@ -212,7 +212,7 @@ kern_return_t
S_msg_sig_post_untraced (mach_port_t port,
mach_port_t reply_port,
mach_msg_type_name_t reply_type,
- int signo, mach_port_t refport)
+ int signo, natural_t sigcode, mach_port_t refport)
{
error_t err;
struct crasher *c = ports_lookup_port (port_bucket, port, crasher_portclass);