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