Changeset 490


Ignore:
Timestamp:
Mar 22, 2008, 1:59:39 AM (16 years ago)
Author:
dai
Message:

GC_malloc系関数のsizeパラメータの値をLongではなく、SIZE_Tに変更した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/system/gc.sbp

    r458 r490  
    793793
    794794
    795 Function GC_malloc(size As Long) As VoidPtr
     795Function GC_malloc(size As SIZE_T) As VoidPtr
    796796    ' sweep
    797797    _System_pGC->TrySweep()
     
    801801End Function
    802802
    803 Function GC_malloc_atomic(size As Long) As VoidPtr
     803Function GC_malloc_atomic(size As SIZE_T) As VoidPtr
    804804    ' sweep
    805805    _System_pGC->TrySweep()
     
    809809End Function
    810810
    811 Function _System_GC_malloc_ForObject(size As Long) As VoidPtr
     811Function _System_GC_malloc_ForObject(size As SIZE_T) As VoidPtr
    812812    ' sweep
    813813    _System_pGC->TrySweep()
     
    817817End Function
    818818
    819 Function _System_GC_malloc_ForObjectPtr(size As Long) As VoidPtr
     819Function _System_GC_malloc_ForObjectPtr(size As SIZE_T) As VoidPtr
    820820    ' sweep
    821821    _System_pGC->TrySweep()
Note: See TracChangeset for help on using the changeset viewer.