summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Headers/Thread.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-27 08:35:15 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-27 08:35:15 +0100
commit6a18e607ffc4e83f2bd953c9de5c14f18e077df8 (patch)
treec4fe27391a237361b2cfc3c59a88f28240e20461 /Public/Developer/System.Core/Headers/Thread.hxx
parent3ba0a4aea3d57c67f316b183ca1efb2f6a3e5ee8 (diff)
Kernel: Update System API, add prefix to functions.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Developer/System.Core/Headers/Thread.hxx')
-rw-r--r--Public/Developer/System.Core/Headers/Thread.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Public/Developer/System.Core/Headers/Thread.hxx b/Public/Developer/System.Core/Headers/Thread.hxx
index a441041d..6118ea21 100644
--- a/Public/Developer/System.Core/Headers/Thread.hxx
+++ b/Public/Developer/System.Core/Headers/Thread.hxx
@@ -28,11 +28,11 @@ typedef VoidType(*ThreadEntrypointKind)(VoidType);
/// @param threadName the thread's name.
/// @param threadStart where to start.
/// @return
-CA_EXTERN_C ThreadRef CreateThread(const CharacterTypeUTF8* threadName, ThreadEntrypointKind threadStart);
+CA_EXTERN_C ThreadRef TmCreateThread(const CharacterTypeUTF8* threadName, ThreadEntrypointKind threadStart);
/// @brief Dispoes the thread, and exits with code kThreadErrorExit
/// @param ref
/// @return
-CA_EXTERN_C VoidType DisposeThread(ThreadRef ref);
+CA_EXTERN_C VoidType TmDisposeThread(ThreadRef ref);
#endif // __THREAD_API__