Changeset 2802 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- Feb 16, 2000, 3:25:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r2559 r2802 1 /* $Id: exceptions.cpp,v 1.3 3 2000-01-29 14:22:56sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.34 2000-02-16 14:25:39 sandervl Exp $ */ 2 2 3 3 /* … … 65 65 #include <wprocess.h> 66 66 #include "oslibexcept.h" 67 68 #define DBG_LOCALLOG DBG_exceptions 69 #include "dbglocal.h" 67 70 68 71 //Global Process Unhandled exception filter … … 862 865 if (pCtxRec->ContextFlags & CONTEXT_CONTROL) /* check flags */ 863 866 dprintf((" SS:ESP=%04x:%08x EFLAGS=%08x\n" 864 " CS:EIP=%04x:%08x EBP =%08x\n",867 " CS:EIP=%04x:%08x EBP =%08x\n", 865 868 pCtxRec->ctx_SegSs, 866 869 pCtxRec->ctx_RegEsp, … … 872 875 if (pCtxRec->ContextFlags & CONTEXT_INTEGER) /* check flags */ 873 876 dprintf((" EAX=%08x EBX=%08x ESI=%08x\n" 874 " ECX=%08x EDX=%08x EDI=%08x\n",877 " ECX=%08x EDX=%08x EDI=%08x\n", 875 878 pCtxRec->ctx_RegEax, 876 879 pCtxRec->ctx_RegEbx, … … 882 885 if (pCtxRec->ContextFlags & CONTEXT_SEGMENTS) /* check flags */ 883 886 dprintf((" DS=%04x ES=%08x" 884 " FS=%04x GS=%04x\n",887 " FS=%04x GS=%04x\n", 885 888 pCtxRec->ctx_SegDs, 886 889 pCtxRec->ctx_SegEs,
Note:
See TracChangeset
for help on using the changeset viewer.