diff options
author | jsorg71 <jsorg71> | 2007-11-03 07:18:48 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-11-03 07:18:48 +0000 |
commit | 311b688ad73d8b9a834192daafdc8fedc40e0a04 (patch) | |
tree | 96c6cf91d1c82fe09cddf0e5cc784983a93156d1 /common/thread_calls.h | |
parent | ea7553f77c5b85e438d16c386c15511d2c40e1b3 (diff) | |
download | xrdp-proprietary-311b688ad73d8b9a834192daafdc8fedc40e0a04.tar.gz xrdp-proprietary-311b688ad73d8b9a834192daafdc8fedc40e0a04.zip |
long to tbus
Diffstat (limited to 'common/thread_calls.h')
-rw-r--r-- | common/thread_calls.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/common/thread_calls.h b/common/thread_calls.h index 06583632..e5d32ecb 100644 --- a/common/thread_calls.h +++ b/common/thread_calls.h @@ -30,23 +30,23 @@ int APP_CC tc_thread_create(THREAD_RV (THREAD_CC * start_routine)(void*), void* arg); -long APP_CC +tbus APP_CC tc_get_threadid(void); -long APP_CC +tbus APP_CC tc_mutex_create(void); void APP_CC -tc_mutex_delete(long mutex); +tc_mutex_delete(tbus mutex); int APP_CC -tc_mutex_lock(long mutex); +tc_mutex_lock(tbus mutex); int APP_CC -tc_mutex_unlock(long mutex); -long APP_CC +tc_mutex_unlock(tbus mutex); +tbus APP_CC tc_sem_create(int init_count); void APP_CC -tc_sem_delete(long sem); +tc_sem_delete(tbus sem); int APP_CC -tc_sem_dec(long sem); +tc_sem_dec(tbus sem); int APP_CC -tc_sem_inc(long sem); +tc_sem_inc(tbus sem); #endif |