示例#1
0
intptr_t
CMonitor::ExitUsingThreadId(CThread& self)
{
	return omrthread_monitor_exit_using_threadId(m_monitor, self.GetId());
}
示例#2
0
intptr_t
CMonitor::TryEnterUsingThreadId(CThread& self)
{
	return omrthread_monitor_try_enter_using_threadId(m_monitor, self.GetId());
}