MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / pthread_join

Function pthread_join

Source/astcenccli_platform_dependents.cpp:129–136  ·  view source on GitHub ↗

* @brief Proxy Windows @c WaitForSingleObject underneath a pthreads-like wrapper. */

Source from the content-addressed store, hash-verified

127 * @brief Proxy Windows @c WaitForSingleObject underneath a pthreads-like wrapper.
128 */
129static int pthread_join(
130 pthread_t thread,
131 void** value
132) {
133 static_cast<void>(value);
134 WaitForSingleObject(thread, INFINITE);
135 return 0;
136}
137
138/* See header for documentation */
139int get_cpu_count()

Callers 1

launch_threadsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected