MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / join

Method join

engine/source/platformAndroid/AndroidThread.cpp:104–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104bool Thread::join()
105{
106 if(!isAlive())
107 return true;
108
109 // not using pthread_join here because pthread_join cannot deal
110 // with multiple simultaneous calls.
111 mData->mGateway.acquire();
112 mData->mGateway.release();
113 return true;
114}
115
116void Thread::run(void* arg)
117{

Callers

nothing calls this directly

Calls 2

acquireMethod · 0.45
releaseMethod · 0.45

Tested by

no test coverage detected