From f95d8bf159d10b5a9521dcaa0bc37aa0e9dfc02b Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 5 May 2024 21:10:18 +0200 Subject: MHR-23: Add run_format.sh, kernel patches. Signed-off-by: Amlal El Mahrouss --- Public/Developer/SystemLib/Headers/Thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Public/Developer/SystemLib/Headers/Thread.h') diff --git a/Public/Developer/SystemLib/Headers/Thread.h b/Public/Developer/SystemLib/Headers/Thread.h index 4a54d841..2bcebdcd 100644 --- a/Public/Developer/SystemLib/Headers/Thread.h +++ b/Public/Developer/SystemLib/Headers/Thread.h @@ -22,12 +22,12 @@ typedef QWordType ThreadRef; /// @brief Main application thread. CA_EXTERN_C ThreadRef kMainThread; -typedef VoidType(*ThreadEntrypointKind)(VoidType); +typedef VoidType (*ThreadEntrypointKind)(VoidType); /// @brief Creates a new thread, and runs the code. /// @param threadName the thread's name. /// @param threadStart where to start. -/// @return +/// @return CA_EXTERN_C ThreadRef TmCreateThread(const CharacterTypeUTF8* threadName, ThreadEntrypointKind threadStart); /// @brief Dispoes the thread, and exits with code kThreadErrorExit @@ -40,4 +40,4 @@ CA_EXTERN_C VoidType TmDisposeThread(ThreadRef ref); /// @return nothing. CA_EXTERN_C VoidType TmWaitForCompletion(ThreadRef ref); -#endif // __THREAD__ +#endif // __THREAD__ -- cgit v1.2.3