From: Stefan Ring Date: Wed, 22 Oct 2008 12:32:29 +0000 (+0200) Subject: * src/threads/thread.cpp (threads_thread_is_alive): Recognize parked states. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=644552e1fa7df93b23321e717b1ed3ed416c0bc6;p=cacao.git * src/threads/thread.cpp (threads_thread_is_alive): Recognize parked states. --- diff --git a/src/threads/thread.cpp b/src/threads/thread.cpp index 0cf22e757..3cad59663 100644 --- a/src/threads/thread.cpp +++ b/src/threads/thread.cpp @@ -1192,6 +1192,8 @@ bool threads_thread_is_alive(threadobject *t) case THREAD_STATE_BLOCKED: case THREAD_STATE_WAITING: case THREAD_STATE_TIMED_WAITING: + case THREAD_STATE_PARKED: + case THREAD_STATE_TIMED_PARKED: return true; default: