Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/ia64/include Fix type missmatch.



details:   https://anonhg.NetBSD.org/src/rev/6929deac3445
branches:  trunk
changeset: 752146:6929deac3445
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Wed Feb 17 06:06:50 2010 +0000

description:
Fix type missmatch.
  forgot to commit since change ia64/syscall.c,1.5.

diffstat:

 sys/arch/ia64/include/proc.h |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 376ea5daa706 -r 6929deac3445 sys/arch/ia64/include/proc.h
--- a/sys/arch/ia64/include/proc.h      Wed Feb 17 01:17:36 2010 +0000
+++ b/sys/arch/ia64/include/proc.h      Wed Feb 17 06:06:50 2010 +0000
@@ -21,7 +21,7 @@
 
 struct mdproc {
   /* XXX: Todo */
-       void    (*md_syscall)(struct trapframe *);
+       void    (*md_syscall)(struct lwp *, u_int64_t, struct trapframe *);
                                        /* Syscall handling function */
 };
 



Home | Main Index | Thread Index | Old Index