Home
last modified time | relevance | path

Searched refs:ThreadReturnValue (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/threads/
H A Dthread.h36 union ThreadReturnValue { union
39 constexpr ThreadReturnValue() : posix_retval(nullptr) {} in ThreadReturnValue() function
40 constexpr ThreadReturnValue(int r) : stdc_retval(r) {} in ThreadReturnValue() function
41 constexpr ThreadReturnValue(void *r) : posix_retval(r) {} in ThreadReturnValue() function
109 ThreadReturnValue retval;
177 ThreadReturnValue retval; in join()
187 ThreadReturnValue retval; in join()
203 int join(ThreadReturnValue &retval);
237 [[noreturn]] void thread_exit(ThreadReturnValue retval, ThreadStyle style);
/freebsd/contrib/llvm-project/libc/src/__support/threads/linux/
H A Dthread.cpp188 thread_exit(ThreadReturnValue(attrib->retval.posix_retval), in start_thread()
193 thread_exit(ThreadReturnValue(attrib->retval.stdc_retval), in start_thread()
342 int Thread::join(ThreadReturnValue &retval) { in join()
485 void thread_exit(ThreadReturnValue retval, ThreadStyle style) { in thread_exit()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h65 ThreadReturnValue, enumerator
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp173 Definition("return-value", EntryType::ThreadReturnValue),
364 ENUM_TO_CSTR(ThreadReturnValue); in TypeToCString()
1531 case Entry::Type::ThreadReturnValue: in Format()