| 47 | #ifndef HX_THREAD_SEMAPHORE_LOCKABLE |
| 48 | HxMutex mMutex; |
| 49 | void PushBack(Dynamic inValue) |
| 50 | { |
| 51 | hx::EnterGCFreeZone(); |
| 52 | AutoLock lock(mMutex); |
| 53 | hx::ExitGCFreeZone(); |
| 54 | |
| 55 | push(inValue); |
| 56 | mSemaphore.Set(); |
| 57 | } |
| 58 | void PushFront(Dynamic inValue) |
| 59 | { |
| 60 | hx::EnterGCFreeZone(); |
no test coverage detected