diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-05-12 09:57:37 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-05-12 09:57:37 +0200 |
| commit | 4e4f9e871236067f0cda4b67a732d3b3bbf08884 (patch) | |
| tree | 3075fccf13c15bb71b022038d293e15b8020a580 /SDK/Library/CoreSystem/Headers/Thread.h | |
| parent | bc57a29a24b98b00ba17710ba84ec2188ab73504 (diff) | |
MHR-23: Update CoreSystem prefix from CA_ to CS_.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'SDK/Library/CoreSystem/Headers/Thread.h')
| -rw-r--r-- | SDK/Library/CoreSystem/Headers/Thread.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/SDK/Library/CoreSystem/Headers/Thread.h b/SDK/Library/CoreSystem/Headers/Thread.h index f0360b63..2d760eec 100644 --- a/SDK/Library/CoreSystem/Headers/Thread.h +++ b/SDK/Library/CoreSystem/Headers/Thread.h @@ -19,7 +19,7 @@ typedef QWordType ThreadRef; /// @brief Main application thread. -CA_EXTERN_C ThreadRef kMainThread; +CS_EXTERN_C ThreadRef kMainThread; typedef VoidType (*ThreadEntrypointKind)(VoidType); @@ -27,21 +27,21 @@ typedef VoidType (*ThreadEntrypointKind)(VoidType); /// @param threadName the thread's name. /// @param threadStart where to start. /// @return -CA_EXTERN_C ThreadRef CTCreate(const CharacterTypeUTF8* threadName, ThreadEntrypointKind threadStart); +CS_EXTERN_C ThreadRef CSThreadCreate(const CharacterTypeUTF8* threadName, ThreadEntrypointKind threadStart); /// @brief Dispoes the thread, and exits with code kThreadErrorExit /// @param ref the thread reference. /// @return nothing. -CA_EXTERN_C VoidType CTRelease(ThreadRef ref); +CS_EXTERN_C VoidType CSThreadRelease(ThreadRef ref); /// @brief Waits for the thread to complete. /// @param ref the thread reference. /// @return nothing. -CA_EXTERN_C VoidType CTJoin(ThreadRef ref); +CS_EXTERN_C VoidType CSThreadJoin(ThreadRef ref); /// @brief Yields the current thread. /// @param ref the thead reference. /// @return -CA_EXTERN_C VoidType CTYield(ThreadRef ref); +CS_EXTERN_C VoidType CSThreadYield(ThreadRef ref); #endif // __THREAD__ |
