Home
last modified time | relevance | path

Searched refs:core_used_map (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp179 std::vector<bool> core_used_map(num_cores, false); in UpdateThreadList() local
193 *thread_dict, core_thread_list, old_thread_list, core_used_map, in UpdateThreadList()
206 if (!core_used_map[core_idx]) { in UpdateThreadList()
218 ThreadList &old_thread_list, std::vector<bool> &core_used_map, in CreateThreadFromThreadInfo() argument
263 if (core_number < core_used_map.size()) in CreateThreadFromThreadInfo()
264 core_used_map[core_number] = true; in CreateThreadFromThreadInfo()
394 std::vector<bool> core_used_map; in CreateThread() local
401 thread_list, core_used_map, &did_create)); in CreateThread()
H A DOperatingSystemPython.h72 std::vector<bool> &core_used_map, bool *did_create_ptr);