Commit 2e9ac471 by Adam Megacz Committed by Adam Megacz

2002-08-23 Adam Megacz <adam@xwt.org>

        * Removed extraneous ABORT()

From-SVN: r57460
parent 9ef1b13a
2002-08-23 Adam Megacz <adam@xwt.org>
* Removed extraneous ABORT()
2002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.am (all-multi): Fix multilib parallel build. * Makefile.am (all-multi): Fix multilib parallel build.
......
...@@ -134,9 +134,6 @@ void GC_push_all_stacks() ...@@ -134,9 +134,6 @@ void GC_push_all_stacks()
(LPCONTEXT)&thread_table[i].context)) (LPCONTEXT)&thread_table[i].context))
ABORT("GetThreadContext failed"); ABORT("GetThreadContext failed");
# ifdef I386 # ifdef I386
if (thread_table[i].context.Esp >= (DWORD)thread_table[i].stack
|| thread_table[i].context.Esp < (DWORD)bottom)
ABORT("Thread stack pointer out of range");
GC_push_one ((word) thread_table[i].context.Edi); GC_push_one ((word) thread_table[i].context.Edi);
GC_push_one ((word) thread_table[i].context.Esi); GC_push_one ((word) thread_table[i].context.Esi);
GC_push_one ((word) thread_table[i].context.Ebp); GC_push_one ((word) thread_table[i].context.Ebp);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment