summaryrefslogtreecommitdiffstats
path: root/common/thread_calls.h
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2017-03-12 09:35:00 -0700
committerjsorg71 <jay.sorg@gmail.com>2017-03-14 00:21:48 -0700
commit6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch)
tree951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /common/thread_calls.h
parent8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff)
downloadxrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz
xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/thread_calls.h')
-rw-r--r--common/thread_calls.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/common/thread_calls.h b/common/thread_calls.h
index 2a3122fc..c8b6640a 100644
--- a/common/thread_calls.h
+++ b/common/thread_calls.h
@@ -23,27 +23,27 @@
#include "arch.h"
-int APP_CC
+int
tc_thread_create(THREAD_RV (THREAD_CC * start_routine)(void*), void* arg);
-tbus APP_CC
+tbus
tc_get_threadid(void);
-int APP_CC
+int
tc_threadid_equal(tbus tid1, tbus tid2);
-tbus APP_CC
+tbus
tc_mutex_create(void);
-void APP_CC
+void
tc_mutex_delete(tbus mutex);
-int APP_CC
+int
tc_mutex_lock(tbus mutex);
-int APP_CC
+int
tc_mutex_unlock(tbus mutex);
-tbus APP_CC
+tbus
tc_sem_create(int init_count);
-void APP_CC
+void
tc_sem_delete(tbus sem);
-int APP_CC
+int
tc_sem_dec(tbus sem);
-int APP_CC
+int
tc_sem_inc(tbus sem);
#endif