summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Register/Inputs/x86-multithread-read.cpp
AgeCommit message (Collapse)Author
2025-10-30[NFCI][lldb][test] Add missing <functional> includes (#165772)Raul Tambre
`std::ref()` is provided in `<functional>` and with recent libc++ changes it no longer seems to be included transitively. Fix by including explicitly.
2020-10-14[lldb] [test/Register] Add read/write tests for multithreaded processMichał Górny
Add a test to verify that 'register read' and 'register write' commands work correctly in a multithreaded program, in particular that they read or write registers for the correct thread. The tests use locking to ensure that events are serialized and the test can execute reliably. Differential Revision: https://reviews.llvm.org/D89248