Module Name: src
Committed By: njoly
Date: Mon Nov 21 22:00:43 UTC 2011
Modified Files:
src/sys/compat/linux/arch/alpha: linux_machdep.h
Log Message:
Adjust setup_linux_rt_sigframe/setup_linux_sigframe prototypes.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/compat/linux/arch/alpha/linux_machdep.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/linux/arch/alpha/linux_machdep.h
diff -u src/sys/compat/linux/arch/alpha/linux_machdep.h:1.11 src/sys/compat/linux/arch/alpha/linux_machdep.h:1.12
--- src/sys/compat/linux/arch/alpha/linux_machdep.h:1.11 Mon Apr 28 20:23:42 2008
+++ src/sys/compat/linux/arch/alpha/linux_machdep.h Mon Nov 21 22:00:42 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_machdep.h,v 1.11 2008/04/28 20:23:42 martin Exp $ */
+/* $NetBSD: linux_machdep.h,v 1.12 2011/11/21 22:00:42 njoly Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -92,10 +92,12 @@ struct linux_rt_sigframe {
#ifdef _KERNEL
__BEGIN_DECLS
-void setup_linux_rt_sigframe(struct trapframe *, int, const sigset_t *);
-void setup_linux_sigframe(struct trapframe *, int, const sigset_t *);
+void setup_linux_rt_sigframe(struct trapframe *, const ksiginfo_t *,
+ const sigset_t *);
+void setup_linux_sigframe(struct trapframe *, const ksiginfo_t *,
+ const sigset_t *);
int linux_restore_sigcontext(struct lwp *, struct linux_sigcontext,
- sigset_t *);
+ sigset_t *);
void linux_syscall_intern(struct proc *);
__END_DECLS
#endif /* !_KERNEL */