Ignore:
Timestamp:
Mar 29, 2000, 7:17:18 PM (25 years ago)
Author:
sandervl
Message:

Critical section changes

File:
1 edited

Legend:

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

    r2802 r3275  
    1 ; $Id: exceptutil.asm,v 1.5 2000-02-16 14:25:40 sandervl Exp $
     1; $Id: exceptutil.asm,v 1.6 2000-03-29 17:17:18 sandervl Exp $
    22
    33;/*
     
    1212
    1313CODE32          SEGMENT DWORD PUBLIC USE32 'CODE'
    14         public  RaiseExceptionAsm
     14        public  _RaiseException@16
    1515        extrn   OS2RAISEEXCEPTION : near
    1616
    17 RaiseExceptionAsm proc near
     17_RaiseException@16 proc near
    1818        push dword ptr [esp+4]  ;DWORD dwExceptionCode
    1919        push dword ptr [esp+12] ;DWORD dwExceptionFlags
     
    4747
    4848        ret 20      ;__stdcall
    49 RaiseExceptionAsm endp
    50 
    51         public  RtlUnwindAsm
     49_RaiseException@16 endp
     50
     51        public  _RtlUnwind@16
    5252        extrn   OS2RTLUNWIND : near
    5353
    54 RtlUnwindAsm proc near
     54_RtlUnwind@16 proc near
    5555        push dword ptr [esp+4]  ;PWINEXCEPTION_FRAME  pEndFrame
    5656        push dword ptr [esp+12] ;LPVOID unusedEip
     
    8484
    8585        ret 20      ;__stdcall
    86 RtlUnwindAsm endp
     86_RtlUnwind@16 endp
    8787
    8888
Note: See TracChangeset for help on using the changeset viewer.