Symbol: thread_debug_info
headers/private/kernel/thread_types.h
305
struct thread_debug_info debug_info;
headers/private/kernel/user_debugger.h
245
void init_thread_debug_info(struct thread_debug_info *info);
headers/private/kernel/user_debugger.h
246
void clear_thread_debug_info(struct thread_debug_info *info, bool dying);
headers/private/kernel/user_debugger.h
247
void destroy_thread_debug_info(struct thread_debug_info *info);
src/system/kernel/debug/user_debugger.cpp
1189
thread_debug_info& threadDebugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
1357
thread_debug_info& debugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
1444
thread_debug_info& debugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
1503
thread_debug_info& debugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
2195
thread_debug_info &threadDebugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
2412
thread_debug_info &threadDebugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
2489
thread_debug_info &threadDebugInfo = thread->debug_info;
src/system/kernel/debug/user_debugger.cpp
306
init_thread_debug_info(struct thread_debug_info *info)
src/system/kernel/debug/user_debugger.cpp
328
clear_thread_debug_info(struct thread_debug_info *info, bool dying)
src/system/kernel/debug/user_debugger.cpp
353
destroy_thread_debug_info(struct thread_debug_info *info)
src/system/kernel/debug/user_debugger.cpp
745
thread_debug_info threadDebugInfo;
src/system/kernel/thread.cpp
2095
struct thread_debug_info debugInfo;