| 229 | return true; |
| 230 | } |
| 231 | void TriggerEvent() { |
| 232 | pthread_mutex_lock(&m_mutex); |
| 233 | m_signaled = true; |
| 234 | pthread_mutex_unlock(&m_mutex); |
| 235 | pthread_cond_signal(&m_cond); |
| 236 | } |
| 237 | } ; |
| 238 | |
| 239 | OSSpecificEvent* soar_thread::MakeEvent() |
no outgoing calls
no test coverage detected