Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/darwin Small prototype mistake (I'm juggling with...



details:   https://anonhg.NetBSD.org/src/rev/1b51b94c84f4
branches:  trunk
changeset: 556711:1b51b94c84f4
user:      manu <manu%NetBSD.org@localhost>
date:      Wed Dec 24 22:57:22 2003 +0000

description:
Small prototype mistake (I'm juggling with too much uncommitted files)

diffstat:

 sys/compat/darwin/darwin_signal.c |  8 ++++----
 sys/compat/darwin/darwin_signal.h |  4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (47 lines):

diff -r 9e2b8a36d862 -r 1b51b94c84f4 sys/compat/darwin/darwin_signal.c
--- a/sys/compat/darwin/darwin_signal.c Wed Dec 24 22:53:59 2003 +0000
+++ b/sys/compat/darwin/darwin_signal.c Wed Dec 24 22:57:22 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: darwin_signal.c,v 1.15 2003/12/24 22:53:59 manu Exp $ */
+/*     $NetBSD: darwin_signal.c,v 1.16 2003/12/24 22:57:22 manu Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: darwin_signal.c,v 1.15 2003/12/24 22:53:59 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: darwin_signal.c,v 1.16 2003/12/24 22:57:22 manu Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -137,8 +137,8 @@
 }
 
 int
-darwin_tracesig(l, signo)
-       struct lwp *l;
+darwin_tracesig(p, signo)
+       struct proc *l;
        int signo;
 {
        struct proc *p = l->l_proc;
diff -r 9e2b8a36d862 -r 1b51b94c84f4 sys/compat/darwin/darwin_signal.h
--- a/sys/compat/darwin/darwin_signal.h Wed Dec 24 22:53:59 2003 +0000
+++ b/sys/compat/darwin/darwin_signal.h Wed Dec 24 22:57:22 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: darwin_signal.h,v 1.12 2003/12/24 22:53:59 manu Exp $ */
+/*     $NetBSD: darwin_signal.h,v 1.13 2003/12/24 22:57:22 manu Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -81,7 +81,7 @@
 
 void darwin_sendsig(const ksiginfo_t *, const sigset_t *);
 void darwin_trapsignal(struct lwp *, const struct ksiginfo *);
-int darwin_tracesig(struct lwp *, int);
+int darwin_tracesig(struct proc *, int);
 void native_to_darwin_siginfo(const struct ksiginfo *, struct darwin___siginfo *);
 
 #endif /* _DARWIN_SIGNAL_H_ */



Home | Main Index | Thread Index | Old Index