- Timestamp:
- Jun 3, 2008, 10:34:17 AM (16 years ago)
- File:
-
- 1 edited
-
branches/win64/lisp-kernel/x86-exceptions.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/win64/lisp-kernel/x86-exceptions.c
r9555 r9664 38 38 #include <sys/syslog.h> 39 39 #endif 40 40 #ifdef WINDOWS 41 #include <windows.h> 42 #include <winternl.h> 43 #include <ntstatus.h> 44 #endif 41 45 42 46 int … … 944 948 return handle_fault(tcr, context, info, old_valence); 945 949 #endif 946 950 951 #ifdef WINDOWS 952 case DBG_PRINTEXCEPTION_C: 953 // Somebody is trying to write debug output. Ignore for now. 954 // FIXME: pass as condition to Lisp 955 return true; 956 #endif 957 947 958 default: 948 959 return false; … … 1506 1517 case EXCEPTION_IN_PAGE_ERROR: 1507 1518 return SIGBUS; 1519 case DBG_PRINTEXCEPTION_C: 1520 return DBG_PRINTEXCEPTION_C; 1508 1521 default: 1509 1522 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.
