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

Changeset 3701

Show
Ignore:
Timestamp:
07/03/08 18:09:51 (3 months ago)
Author:
sean
Message:

Tweaked the syntax regarding ticket #1050 to avoid explicit use of implementation details.

Files:

Legend:

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

    r3693 r3701  
    30723072            push( 0x00000000 );                                     // EAX 
    30733073            push( 0xFFFFFFFF );                                     // FS:[0] 
    3074             //Fix for windows courtesy of Jarret 
    30753074            version( StackGrowsDown ) 
    30763075            { 
    30773076                push( cast(size_t) m_ctxt.bstack );                 // FS:[4] 
    3078                 push( cast(size_t) m_pmem + PAGESIZE );             // FS:[8] 
     3077                push( cast(size_t) m_ctxt.bstack - m_size );        // FS:[8] 
    30793078            } 
    30803079            else