Ignore:
Timestamp:
Feb 16, 2000, 3:25:43 PM (26 years ago)
Author:
sandervl
Message:

Added new logging feature

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptions.cpp

    r2559 r2802  
    1 /* $Id: exceptions.cpp,v 1.33 2000-01-29 14:22:56 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.34 2000-02-16 14:25:39 sandervl Exp $ */
    22
    33/*
     
    6565#include <wprocess.h>
    6666#include "oslibexcept.h"
     67
     68#define DBG_LOCALLOG    DBG_exceptions
     69#include "dbglocal.h"
    6770
    6871//Global Process Unhandled exception filter
     
    862865  if (pCtxRec->ContextFlags & CONTEXT_CONTROL)         /* check flags */
    863866    dprintf(("   SS:ESP=%04x:%08x EFLAGS=%08x\n"
    864              "   CS:EIP=%04x:%08x EBP   =%08x\n",
     867             "       CS:EIP=%04x:%08x EBP   =%08x\n",
    865868             pCtxRec->ctx_SegSs,
    866869             pCtxRec->ctx_RegEsp,
     
    872875  if (pCtxRec->ContextFlags & CONTEXT_INTEGER)         /* check flags */
    873876    dprintf(("   EAX=%08x EBX=%08x ESI=%08x\n"
    874              "   ECX=%08x EDX=%08x EDI=%08x\n",
     877             "       ECX=%08x EDX=%08x EDI=%08x\n",
    875878             pCtxRec->ctx_RegEax,
    876879             pCtxRec->ctx_RegEbx,
     
    882885  if (pCtxRec->ContextFlags & CONTEXT_SEGMENTS)        /* check flags */
    883886    dprintf(("   DS=%04x     ES=%08x"
    884              "   FS=%04x     GS=%04x\n",
     887             "       FS=%04x     GS=%04x\n",
    885888              pCtxRec->ctx_SegDs,
    886889              pCtxRec->ctx_SegEs,
Note: See TracChangeset for help on using the changeset viewer.