Changeset 3483 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- May 2, 2000, 10:53:15 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r3375 r3483 1 /* $Id: exceptions.cpp,v 1. 39 2000-04-14 22:35:27sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.40 2000-05-02 20:53:12 sandervl Exp $ */ 2 2 3 3 /* 4 * Win32 Device IOCTL APIfunctions for OS/24 * Win32 Exception functions for OS/2 5 5 * 6 6 * Ported Wine exception handling code … … 65 65 #include <wprocess.h> 66 66 #include "oslibexcept.h" 67 #include "exceptstackdump.h" 67 68 68 69 #define DBG_LOCALLOG DBG_exceptions … … 535 536 536 537 537 //******************************************************************************538 APIRET APIENTRY DosQueryModFromEIP (PULONG pulModule,539 PULONG pulObject,540 ULONG ulBufferLength,541 PSZ pszBuffer,542 PULONG pulOffset,543 ULONG ulEIP);544 //******************************************************************************545 546 547 538 /***************************************************************************** 548 539 * Name : void static dprintfException … … 840 831 pERepRec->ExceptionAddress)); 841 832 842 if (rc == NO_ERROR)843 dprintf((" %s(#%u), obj #%u:%08x\n",833 if(rc == NO_ERROR && ulObject != -1) 834 dprintf(("<%s> (#%u), obj #%u:%08x\n", 844 835 szModule, 845 836 ulModule, … … 847 838 ulOffset)); 848 839 else 849 dprintf((" \n"));840 dprintf(("<win32 app>\n")); 850 841 851 842 … … 920 911 dprintf(("---[End Of Exception Information]-----\n")); 921 912 } 922 923 913 924 914 /***************************************************************************** … … 1058 1048 CrashAndBurn: 1059 1049 CheckLogException(); 1060 dprintfException(pERepRec, pERegRec, pCtxRec, p); 1050 #ifdef DEBUG 1051 dprintfException(pERepRec, pERegRec, pCtxRec, p); 1052 if(pCtxRec->ContextFlags & CONTEXT_CONTROL) { 1053 dbgPrintStack(pERepRec, pERegRec, pCtxRec, p); 1054 } 1055 #endif 1061 1056 if(fIsOS2Image == FALSE) //Only for real win32 apps 1062 1057 {
Note:
See TracChangeset
for help on using the changeset viewer.