Adjust setup_linux_rt_sigframe/setup_linux_sigframe prototypes.

This commit is contained in:
njoly 2011-11-21 22:00:42 +00:00
parent 77a099d5ff
commit 63da447932
1 changed files with 6 additions and 4 deletions

View File

@ -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 */