Changeset 3693
- Timestamp:
- 07/01/08 16:42:10 (2 months ago)
- Files:
-
- trunk/lib/common/tango/core/Thread.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/common/tango/core/Thread.d
r3096 r3693 3072 3072 push( 0x00000000 ); // EAX 3073 3073 push( 0xFFFFFFFF ); // FS:[0] 3074 // BUG: Are the frame pointers the same for both versions? 3074 //Fix for windows courtesy of Jarret 3075 3075 version( StackGrowsDown ) 3076 3076 { 3077 3077 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] 3079 3079 } 3080 3080 else












