Changeset 4106 for trunk/src


Ignore:
Timestamp:
Aug 28, 2000, 8:35:28 PM (25 years ago)
Author:
sandervl
Message:

MN: RaiseException/RtlUnwind fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptutil.asm

    r4020 r4106  
    1 ; $Id: exceptutil.asm,v 1.8 2000-08-15 17:59:46 sandervl Exp $
     1; $Id: exceptutil.asm,v 1.9 2000-08-28 18:35:28 sandervl Exp $
    22
    33;/*
     
    2222        push dword ptr [esp+16] ;return address
    2323        push esp
    24         sub  dword ptr [esp], 20
     24        add  dword ptr [esp], 20
    2525        push ebp
    2626        pushfd
     
    4646        call OS2RAISEEXCEPTION
    4747
    48         ret 20      ;__stdcall
     48        ret 16      ;__stdcall
    4949_RaiseException@16 endp
    5050
     
    5959        push dword ptr [esp+16] ;return address
    6060        push esp
    61         sub  dword ptr [esp], 20
     61        add  dword ptr [esp], 20
    6262        push ebp
    6363        pushfd
     
    8383        call OS2RTLUNWIND
    8484
    85         ret 20      ;__stdcall
     85        ret 16      ;__stdcall
    8686_RtlUnwind@16 endp
    8787
Note: See TracChangeset for help on using the changeset viewer.