Pass a signal mask to restore_sigcontext.

This commit is contained in:
erh 2000-03-18 23:40:56 +00:00
parent c7a82169cc
commit 224f92b651

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_machdep.h,v 1.1 1998/09/30 21:36:26 erh Exp $ */
/* $NetBSD: linux_machdep.h,v 1.2 2000/03/18 23:40:56 erh Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -97,7 +97,8 @@ struct linux_rt_sigframe {
__BEGIN_DECLS
void setup_linux_rt_sigframe __P((struct trapframe *, int, sigset_t *));
void setup_linux_sigframe __P((struct trapframe *, int, sigset_t *));
int linux_restore_sigcontext __P((struct proc *, struct linux_sigcontext));
int linux_restore_sigcontext __P((struct proc *, struct linux_sigcontext,
sigset_t *));
void linux_sendsig __P((sig_t, int, sigset_t *, u_long));
dev_t linux_fakedev __P((dev_t));
__END_DECLS