diff options
Diffstat (limited to 'sys/arch/i386/i386/machdep.c')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index ca28e938d4d..03ea79cef85 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.18 1996/05/23 08:38:54 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.19 1996/05/30 09:30:09 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */ /*- @@ -412,7 +412,7 @@ identifycpu() break; } strcat(cpu_model, "-class CPU)"); - printf("%s", cpu_model); /* cpu speed would be nice, but how? */ + printf("%s", cpu_model); #if defined(I586_CPU) if (cpu_class == CPUCLASS_586) { calibrate_cyclecounter(); @@ -709,12 +709,6 @@ sys_sigreturn(p, v, retval) p->p_sigacts->ps_sigstk.ss_flags &= ~SS_ONSTACK; p->p_sigmask = context.sc_mask & ~sigcantmask; - if (context.sc_onstack & 01) - p->p_sigacts->ps_sigstk.ss_flags |= SS_ONSTACK; - else - p->p_sigacts->ps_sigstk.ss_flags &= ~SS_ONSTACK; - p->p_sigmask = context.sc_mask & ~sigcantmask; - return (EJUSTRETURN); } |