Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changes between Version 21 and Version 22 of LibraryIntegrationGuide

Show
Ignore:
Author:
sean (IP: 71.131.196.51)
Timestamp:
02/11/08 15:56:40 (16 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LibraryIntegrationGuide

    v21 v22  
    1616    extern (C) void   gc_disable(); 
    1717    extern (C) void   gc_collect(); 
     18    extern (C) void   gc_minimize(); 
    1819 
    1920    extern (C) uint   gc_getAttr( void* p ); 
    2425    extern (C) void*  gc_calloc( size_t sz, uint ba = 0 ); 
    2526    extern (C) void*  gc_realloc( void* p, size_t sz, uint ba = 0 ); 
     27    extern (C) size_t gc_extend( void* p, size_t mx, size_t sz ); 
     28    extern (C) size_t gc_reserve( size_t sz ); 
    2629    extern (C) void   gc_free( void* p ); 
    2730