MCPcopy Create free account
hub / github.com/Kitware/CMake / send

Method send

Source/cmUVHandlePtr.cxx:169–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167};
168
169void uv_async_ptr::send()
170{
171 auto* deleter =
172 std::get_deleter<uv_handle_deleter<uv_async_t>>(this->handle);
173 assert(deleter);
174
175 std::lock_guard<std::mutex> lock(*deleter->handleMutex);
176 if (this->handle) {
177 uv_async_send(*this);
178 }
179}
180
181int uv_async_ptr::init(uv_loop_t& loop, uv_async_cb async_cb, void* data)
182{

Callers 15

testAsyncShutdownFunction · 0.45
testProtocolWithPipesFunction · 0.45
runTestFunction · 0.45
RunProcessMethod · 0.45
ProcessMethod · 0.45
WorkMethod · 0.45
SourceFileLoadedMethod · 0.45
cmDebuggerAdapterMethod · 0.45

Calls 1

uv_async_sendFunction · 0.50