MCPcopy Create free account
hub / github.com/ablab/spades / llvm_execute_on_thread_async

Method llvm_execute_on_thread_async

ext/src/llvm/Threading.cpp:65–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63
64#if LLVM_ENABLE_THREADS == 0
65void llvm::llvm_execute_on_thread_async(
66 llvm::unique_function<void()> Func,
67 llvm::Optional<unsigned> StackSizeInBytes) {
68 (void)Func;
69 (void)StackSizeInBytes;
70 report_fatal_error("Spawning a detached thread doesn't make sense with no "
71 "threading support");
72}
73#else
74// Support for non-Win32, non-pthread implementation.
75void llvm::llvm_execute_on_thread_async(

Callers

nothing calls this directly

Calls 3

report_fatal_errorFunction · 0.85
threadClass · 0.85
detachMethod · 0.80

Tested by

no test coverage detected