Changeset 14427
- Timestamp:
- Nov 12, 2010, 1:02:42 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/lisp-kernel/x86-exceptions.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/x86-exceptions.c
r14426 r14427 1695 1695 { 1696 1696 TCR* tcr = get_tcr(true); 1697 #if 0 1698 if (tcr->valence != TCR_STATE_LISP) { 1699 lisp_Debugger(context, info, signum, true, "exception in foreign context"); 1700 } 1701 #endif 1697 1698 #if WORD_SIZE==64 1699 if ((signum == SIGFPE) && (tcr->valence != TCR_STATE_LISP)) { 1700 if (handle_foreign_fpe(tcr,context,info)) { 1701 return; 1702 } 1703 } 1704 #endif 1705 1702 1706 handle_signal_on_foreign_stack(tcr,signal_handler,signum,info,context,(LispObj)__builtin_return_address(0) 1703 1707 #ifdef DARWIN_GS_HACK
Note:
See TracChangeset
for help on using the changeset viewer.
