Ignore:
Timestamp:
Oct 27, 1999, 1:38:12 AM (26 years ago)
Author:
phaller
Message:

Fix: debug info

File:
1 edited

Legend:

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

    r1403 r1464  
    1 /* $Id: exceptions.cpp,v 1.26 1999-10-22 18:07:18 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.27 1999-10-26 23:38:12 phaller Exp $ */
    22
    33/*
     
    951951  case XCPT_FLOAT_STACK_CHECK:
    952952  case XCPT_FLOAT_UNDERFLOW:
    953         dprintf(("KERNEL32: OS2ExceptionHandler: FPU exception, fix and continue\n"));
     953        dprintf(("KERNEL32: OS2ExceptionHandler: FPU exception\n"));
    954954        if(fIsOS2Image == FALSE)  //Only for real win32 apps
    955955        {
     
    961961                        pCtxRec->ctx_stack[0].signexp = 0;
    962962                }
     963        dprintf(("KERNEL32: OS2ExceptionHandler: fix and continue\n"));
    963964                return (XCPT_CONTINUE_EXECUTION);
    964965        }
    965         else    return (XCPT_CONTINUE_SEARCH);
     966        else
     967        {
     968          dprintf(("KERNEL32: OS2ExceptionHandler: continue search\n"));
     969          return (XCPT_CONTINUE_SEARCH);
     970        }
    966971
    967972  case XCPT_PROCESS_TERMINATE:
Note: See TracChangeset for help on using the changeset viewer.