Skip to content
Snippets Groups Projects
Commit 90abee97 authored by wlott's avatar wlott
Browse files

A few more sparc pseudo-atomic mods.

parent 67fc3223
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.c,v 1.33 1992/03/22 19:57:46 wlott Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.c,v 1.34 1992/03/22 20:25:51 wlott Exp $ */
/* Interrupt handing magic. */
......@@ -323,9 +323,13 @@ struct sigcontext *context;
if (
#ifdef mips
context->sc_regs[FLAGS] & (1<<flag_Atomic)
#else
#ifdef sparc
context->sc_regs[ALLOC] & 4
#else
SymbolValue(PSEUDO_ATOMIC_ATOMIC)
#endif
#endif sparc
#endif mips
) {
maybe_gc_pending = TRUE;
if (pending_signal == 0) {
......@@ -334,8 +338,12 @@ struct sigcontext *context;
}
#ifdef mips
context->sc_regs[FLAGS] |= (1<<flag_Interrupted);
#else
#ifdef sparc
context->sc_regs[ALLOC] |= 1;
#else
SetSymbolValue(PSEUDO_ATOMIC_INTERRUPTED, T);
#endif
#endif
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment