os: adopt multiwait naming over waitable

This commit is contained in:
Michael Scire
2021-09-30 19:00:47 -07:00
parent d9b4009f82
commit 7444a68cd1
79 changed files with 869 additions and 869 deletions

View File

@@ -26,7 +26,7 @@ namespace ams::osdbg::impl {
struct ThreadTypeIlp32 {
AlignedStorageIlp32<0, 2, alignof(u32)> _all_threads_node;
AlignedStorageIlp32<0, 2, alignof(u32)> _waitable_object_list;
AlignedStorageIlp32<0, 2, alignof(u32)> _multi_wait_object_list;
u32 _padding[4];
u8 _state;
bool _stack_is_aliased;
@@ -55,7 +55,7 @@ namespace ams::osdbg::impl {
struct ThreadTypeIlp32Version0 {
AlignedStorageIlp32<0, 2, alignof(u32)> _all_threads_node;
AlignedStorageIlp32<0, 2, alignof(u32)> _waitable_object_list;
AlignedStorageIlp32<0, 2, alignof(u32)> _multi_wait_object_list;
u32 _padding[4];
u8 _state;
bool _stack_is_aliased;
@@ -82,7 +82,7 @@ namespace ams::osdbg::impl {
struct ThreadTypeLp64 {
AlignedStorageLp64<0, 2, alignof(u64)> _all_threads_node;
AlignedStorageLp64<0, 2, alignof(u64)> _waitable_object_list;
AlignedStorageLp64<0, 2, alignof(u64)> _multi_wait_object_list;
u64 _padding[4];
u8 _state;
bool _stack_is_aliased;
@@ -110,7 +110,7 @@ namespace ams::osdbg::impl {
struct ThreadTypeLp64Version0 {
AlignedStorageLp64<0, 2, alignof(u64)> _all_threads_node;
AlignedStorageLp64<0, 2, alignof(u64)> _waitable_object_list;
AlignedStorageLp64<0, 2, alignof(u64)> _multi_wait_object_list;
u64 _padding[4];
u8 _state;
bool _stack_is_aliased;