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

Changeset 3074

Show
Ignore:
Timestamp:
01/07/08 17:34:29 (1 year ago)
Author:
sean
Message:

Partial fix for #845. This refs #845.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/common/tango/core/Thread.d

    r2962 r3074  
    23092309                    is( typeof( _SC_PAGESIZE ) ) ) 
    23102310    { 
    2311         PAGESIZE = sysconf( _SC_PAGESIZE ); 
     2311        PAGESIZE = cast(size_t) sysconf( _SC_PAGESIZE ); 
    23122312        assert( PAGESIZE < int.max ); 
    23132313    }