MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / PushBack

Method PushBack

src/hx/Thread.cpp:49–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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();

Callers 1

__hxcpp_deque_addFunction · 0.80

Calls 5

EnterGCFreeZoneFunction · 0.85
ExitGCFreeZoneFunction · 0.85
QSetMethod · 0.80
pushFunction · 0.50
SetMethod · 0.45

Tested by

no test coverage detected