From 4e4f9e871236067f0cda4b67a732d3b3bbf08884 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 12 May 2024 09:57:37 +0200 Subject: MHR-23: Update CoreSystem prefix from CA_ to CS_. Signed-off-by: Amlal El Mahrouss --- SDK/Library/CoreSystem/Headers/Thread.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'SDK/Library/CoreSystem/Headers/Thread.h') 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__ -- cgit v1.2.3