Changeset 1994 for trunk/src


Ignore:
Timestamp:
Dec 6, 1999, 8:48:11 PM (26 years ago)
Author:
achimha
Message:

cleanup

File:
1 edited

Legend:

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

    r1987 r1994  
    1 ; $Id: interlock.asm,v 1.3 1999-12-06 08:34:59 phaller Exp $
     1; $Id: interlock.asm,v 1.4 1999-12-06 19:48:11 achimha Exp $
    22
    33;/*
     
    3333_InterlockedIncrement@4 proc near
    3434
    35 ;@@@PH NT4 implementation
     35;@@@PH similar to NT4
    3636         mov      ecx, [esp+4]
    3737         mov      eax, 1
     
    4141         retn 4
    4242
    43 ; @@@PH 1999/12/06 old implementation from W95
     43; @@@PH 1999/12/06 old implementation similar to W95
    4444;var_4   = dword ptr -4
    4545;arg_0   = dword ptr  4
     
    8484_InterlockedDecrement@4 proc near
    8585
    86 ;@@@PH NT4 implementation
     86;@@@PH similar to NT4
    8787         mov      ecx, [esp+4]
    8888         mov      eax, 0ffffffffh
     
    9393
    9494
    95 ; @@@PH 1999/12/06 old implementation from W95
     95; @@@PH 1999/12/06 old implementation similar to W95
    9696;var_4  = dword ptr -4
    9797;arg_0  = dword ptr  4
     
    136136_InterlockedExchange@8 proc near
    137137
    138 ;@@@PH NT4 implementation
     138;@@@PH similar to NT4
    139139         mov      ecx, [esp+8]
    140140         mov      edx, [esp+4]
     
    146146         retn 8
    147147
    148 ; @@@PH 1999/12/06 old implementation from W95
     148; @@@PH 1999/12/06 old implementation similar to W95
    149149;var_4   = dword ptr -4
    150150;arg_0   = dword ptr  8
     
    187187_InterlockedCompareExchange@12 proc near
    188188
    189 ;@@@PH NT4 implementation
     189;@@@PH similar to NT4
    190190        mov     ecx, dword ptr [esp + 12]
    191191        mov     edx, dword ptr [esp + 8]
     
    230230_InterlockedExchangeAdd@8 proc near
    231231
    232 ;@@@PH NT4 implementation
     232;@@@PH similar to NT4
    233233        mov     ecx, dword ptr [esp + 4]
    234234        mov     eax, dword ptr [esp + 8]
Note: See TracChangeset for help on using the changeset viewer.