Ignore:
Timestamp:
Apr 21, 2001, 11:10:14 AM (24 years ago)
Author:
sandervl
Message:

rewrote EXC_CallHandler in assembly + workaround for high addresses in stdout WriteFile

File:
1 edited

Legend:

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

    r5308 r5557  
    1 /* $Id: exceptions.cpp,v 1.51 2001-03-13 18:45:33 sandervl Exp $ */
    2 
    3 /* WARNING: Compiling this module with ICC with optimizations turned on   */
    4 /* currently breaks this module. To get correct code, it is not necessary */
    5 /* to turn all optimizations off, just use the -Op- flag.                 */
     1/* $Id: exceptions.cpp,v 1.52 2001-04-21 09:10:13 sandervl Exp $ */
    62
    73/*
     
    126122}
    127123
     124#if 0
    128125static inline WINEXCEPTION_FRAME * EXC_push_frame( WINEXCEPTION_FRAME *frame )
    129126{
     
    142139    return frame->Prev;
    143140}
     141#endif
    144142
    145143/*****************************************************************************
     
    270268}
    271269
     270#if 1
     271DWORD EXC_CallHandler( WINEXCEPTION_RECORD *record, WINEXCEPTION_FRAME *frame,
     272                       WINCONTEXT *context, WINEXCEPTION_FRAME **dispatcher,
     273                       PEXCEPTION_HANDLER handler, PEXCEPTION_HANDLER nested_handler);
     274
     275#else
    272276/*******************************************************************
    273277 *         EXC_CallHandler
     
    296300    return ret;
    297301}
    298 
     302#endif
    299303//******************************************************************************
    300304//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.