aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-03-17 14:31:58 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-03-17 14:31:58 +0000
commitb36546f69af873439d9b72e6bfd1db036c2da0b6 (patch)
treee3cc7d2c2d165a126067bbd582d338cbc9512161
parente84f22b522084ead16d3a5e256e83e5a0a91904a (diff)
Notes
-rw-r--r--sys/alpha/linux/linux_sysvec.c8
-rw-r--r--sys/i386/linux/linux_sysvec.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c
index c6316ae21aff..9a9f338859ca 100644
--- a/sys/alpha/linux/linux_sysvec.c
+++ b/sys/alpha/linux/linux_sysvec.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_sysvec.c,v 1.2 1996/03/10 08:42:48 sos Exp $
+ * $Id: linux_sysvec.c,v 1.3 1996/03/10 22:42:16 peter Exp $
*/
/* XXX we use functions that might not exist. */
@@ -66,7 +66,7 @@
int linux_fixup __P((int **stack_base, struct image_params *iparams));
int elf_linux_fixup __P((int **stack_base, struct image_params *iparams));
void linux_prepsyscall __P((struct trapframe *tf, int *args, u_int *code, caddr_t *params));
-void linux_sendsig __P((sig_t catcher, int sig, int mask, unsigned code));
+void linux_sendsig __P((sig_t catcher, int sig, int mask, u_long code));
/*
* Linux syscalls return negative errno's, we do positive and map them
@@ -164,7 +164,7 @@ extern int _ucodesel, _udatasel;
*/
void
-linux_sendsig(sig_t catcher, int sig, int mask, unsigned code)
+linux_sendsig(sig_t catcher, int sig, int mask, u_long code)
{
register struct proc *p = curproc;
register int *regs;
@@ -176,7 +176,7 @@ linux_sendsig(sig_t catcher, int sig, int mask, unsigned code)
oonstack = psp->ps_sigstk.ss_flags & SS_ONSTACK;
#ifdef DEBUG
- printf("Linux-emul(%d): linux_sendsig(%8x, %d, %d, %d)\n",
+ printf("Linux-emul(%d): linux_sendsig(%8x, %d, %d, %ld)\n",
p->p_pid, catcher, sig, mask, code);
#endif
/*
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index c6316ae21aff..9a9f338859ca 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_sysvec.c,v 1.2 1996/03/10 08:42:48 sos Exp $
+ * $Id: linux_sysvec.c,v 1.3 1996/03/10 22:42:16 peter Exp $
*/
/* XXX we use functions that might not exist. */
@@ -66,7 +66,7 @@
int linux_fixup __P((int **stack_base, struct image_params *iparams));
int elf_linux_fixup __P((int **stack_base, struct image_params *iparams));
void linux_prepsyscall __P((struct trapframe *tf, int *args, u_int *code, caddr_t *params));
-void linux_sendsig __P((sig_t catcher, int sig, int mask, unsigned code));
+void linux_sendsig __P((sig_t catcher, int sig, int mask, u_long code));
/*
* Linux syscalls return negative errno's, we do positive and map them
@@ -164,7 +164,7 @@ extern int _ucodesel, _udatasel;
*/
void
-linux_sendsig(sig_t catcher, int sig, int mask, unsigned code)
+linux_sendsig(sig_t catcher, int sig, int mask, u_long code)
{
register struct proc *p = curproc;
register int *regs;
@@ -176,7 +176,7 @@ linux_sendsig(sig_t catcher, int sig, int mask, unsigned code)
oonstack = psp->ps_sigstk.ss_flags & SS_ONSTACK;
#ifdef DEBUG
- printf("Linux-emul(%d): linux_sendsig(%8x, %d, %d, %d)\n",
+ printf("Linux-emul(%d): linux_sendsig(%8x, %d, %d, %ld)\n",
p->p_pid, catcher, sig, mask, code);
#endif
/*