summaryrefslogtreecommitdiffstats
path: root/common/thread_calls.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/thread_calls.h')
-rw-r--r--common/thread_calls.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/common/thread_calls.h b/common/thread_calls.h
index 93debdfe..e1697d36 100644
--- a/common/thread_calls.h
+++ b/common/thread_calls.h
@@ -24,8 +24,16 @@
#include "arch.h"
int APP_CC
-g_thread_create(THREAD_RV (THREAD_CC * start_routine)(void*), void* arg);
+tc_thread_create(THREAD_RV (THREAD_CC * start_routine)(void*), void* arg);
long APP_CC
-g_get_threadid(void);
+tc_get_threadid(void);
+long APP_CC
+tc_create_mutex(void);
+void APP_CC
+tc_delete_mutex(long mutex);
+int APP_CC
+tc_lock_mutex(long mutex);
+int APP_CC
+tc_unlock_mutex(long mutex);
#endif