From 872ef3b1fbd3daf833997323c166c8445d79c390 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Mon, 27 Nov 2000 22:23:09 +0000 Subject: [PATCH] don't use linux_emuldata for now, so that this compiles after rev 1.2 of compat/linux/common/linux_emuldata.h --- sys/compat/linux/arch/alpha/linux_machdep.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/compat/linux/arch/alpha/linux_machdep.c b/sys/compat/linux/arch/alpha/linux_machdep.c index a38becd9acb0..7ca85da9aadd 100644 --- a/sys/compat/linux/arch/alpha/linux_machdep.c +++ b/sys/compat/linux/arch/alpha/linux_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_machdep.c,v 1.10 2000/06/29 02:40:37 mrg Exp $ */ +/* $NetBSD: linux_machdep.c,v 1.11 2000/11/27 22:23:09 jdolecek Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -312,6 +312,7 @@ linux_sendsig(catcher, sig, mask, code) { struct proc *p = curproc; struct trapframe *tf = p->p_md.md_tf; +#ifdef notyet struct linux_emuldata *edp; /* Setup the signal frame (and part of the trapframe) */ @@ -326,6 +327,7 @@ linux_sendsig(catcher, sig, mask, code) if (edp && sigismember(&edp->ps_siginfo, sig)) setup_linux_rt_sigframe(tf, sig, mask); else +#endif /* notyet */ setup_linux_sigframe(tf, sig, mask); /* Signal handler for trampoline code */