diff options
author | jsorg71 <jsorg71> | 2008-03-31 11:07:55 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-03-31 11:07:55 +0000 |
commit | 53fce709d4c5947200be395251614bf4862cb215 (patch) | |
tree | 3315575931bb8b37ac5ea7d0252d7a40447f99f9 /common/os_calls.h | |
parent | 26d35b652639d3f765ed0250686b2b70454880da (diff) | |
download | xrdp-proprietary-53fce709d4c5947200be395251614bf4862cb215.tar.gz xrdp-proprietary-53fce709d4c5947200be395251614bf4862cb215.zip |
added wait obj functions
Diffstat (limited to 'common/os_calls.h')
-rw-r--r-- | common/os_calls.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/os_calls.h b/common/os_calls.h index cebd7a0f..e46ffa36 100644 --- a/common/os_calls.h +++ b/common/os_calls.h @@ -93,6 +93,21 @@ int APP_CC g_tcp_select(int sck1, int sck2); void APP_CC g_sleep(int msecs); +tbus APP_CC +g_create_wait_obj(char* name); +tbus APP_CC +g_create_wait_obj_from_socket(tbus socket, int write); +int APP_CC +g_set_wait_obj(tbus obj); +int APP_CC +g_reset_wait_obj(tbus obj); +int APP_CC +g_is_wait_obj_set(tbus obj); +int APP_CC +g_destroy_wait_obj(tbus obj); +int APP_CC +g_obj_wait(tbus* read_objs, int rcount, tbus* write_objs, int wcount, + int mstimeout); void APP_CC g_random(char* data, int len); int APP_CC |