Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact
Show
Ignore:
Timestamp:
03/05/09 10:17:05 (3 years ago)
Author:
fawzi
Message:

reducing diffs with druntime, adding mac support, general reorganization

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gc/basic/gc.d

    r4097 r4384  
    5454} 
    5555 
     56version (DigitalMars) version(OSX) { 
     57    extern(C) void _d_osx_image_init(); 
     58} 
     59 
    5660extern (C) void thread_init(); 
    5761 
     
    7175    } 
    7276    _gc.initialize(); 
     77    version (DigitalMars) version(OSX) { 
     78        _d_osx_image_init(); 
     79    } 
    7380    // NOTE: The GC must initialize the thread library 
    7481    //       before its first collection.