mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-27 13:14:15 -04:00
os: adopt multiwait naming over waitable
This commit is contained in:
parent
d9b4009f82
commit
7444a68cd1
79 changed files with 869 additions and 869 deletions
|
@ -21,7 +21,7 @@
|
|||
namespace ams::os {
|
||||
|
||||
struct ThreadType;
|
||||
struct WaitableHolderType;
|
||||
struct MultiWaitHolderType;
|
||||
|
||||
Result CreateThread(ThreadType *thread, ThreadFunction function, void *argument, void *stack, size_t stack_size, s32 priority, s32 ideal_core);
|
||||
Result CreateThread(ThreadType *thread, ThreadFunction function, void *argument, void *stack, size_t stack_size, s32 priority);
|
||||
|
@ -62,6 +62,6 @@ namespace ams::os {
|
|||
|
||||
ThreadId GetThreadId(const ThreadType *thread);
|
||||
|
||||
void InitializeWaitableHolder(WaitableHolderType *holder, ThreadType *thread);
|
||||
void InitializeMultiWaitHolder(MultiWaitHolderType *holder, ThreadType *thread);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue