本文整理汇总了C++中VM::find_and_activate_thread方法的典型用法代码示例。如果您正苦于以下问题:C++ VM::find_and_activate_thread方法的具体用法?C++ VM::find_and_activate_thread怎么用?C++ VM::find_and_activate_thread使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VM
的用法示例。
在下文中一共展示了VM::find_and_activate_thread方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: test_find_and_activate_none_is_false
void test_find_and_activate_none_is_false() {
Thread* cur = Thread::current(state);
bool ret = state->find_and_activate_thread();
TS_ASSERT_EQUALS(false, ret);
TS_ASSERT_EQUALS(cur, Thread::current(state));
TS_ASSERT_EQUALS(Qfalse, cur->queued());
}
示例2: test_find_and_activate
void test_find_and_activate() {
Thread* cur = Thread::current(state);
Thread* thread = Thread::create(state);
thread->wakeup(state);
state->queue_thread(thread);
bool ret = state->find_and_activate_thread();
TS_ASSERT_EQUALS(true, ret);
TS_ASSERT_EQUALS(Qfalse, thread->queued());
TS_ASSERT_EQUALS(thread, Thread::current(state));
TS_ASSERT_EQUALS(Qtrue, cur->queued());
}