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

Changeset 3693

Show
Ignore:
Timestamp:
07/01/08 16:42:10 (2 months ago)
Author:
mclysenk
Message:

Added fix for Fiber exceptions courtesy of Jarret.

Files:

Legend:

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

    r3096 r3693  
    30723072            push( 0x00000000 );                                     // EAX 
    30733073            push( 0xFFFFFFFF );                                     // FS:[0] 
    3074             // BUG: Are the frame pointers the same for both versions? 
     3074            //Fix for windows courtesy of Jarret 
    30753075            version( StackGrowsDown ) 
    30763076            { 
    30773077                push( cast(size_t) m_ctxt.bstack );                 // FS:[4] 
    3078                 push( cast(size_t) m_ctxt.bstack + m_size );        // FS:[8] 
     3078                push( cast(size_t) m_pmem + PAGESIZE );             // FS:[8] 
    30793079            } 
    30803080            else