1
1
This commit was SVN r8901.
Этот коммит содержится в:
George Bosilca 2006-02-06 04:17:13 +00:00
родитель eb1d2dd290
Коммит 897751bb8d

Просмотреть файл

@ -97,10 +97,7 @@ bool opal_thread_self_compare(opal_thread_t *t)
{ {
DWORD thread_id; DWORD thread_id;
thread_id = GetCurrentThreadId(); thread_id = GetCurrentThreadId();
if (thread_id == t->t_handle) { return (thread_id == t->t_handle ? true : false);
return true;
}
return false;
} }