Implemented send_data/receive_data/has_data thread syscalls

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@815 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
lillo
2002-08-19 08:28:39 +00:00
parent a215064d68
commit 615a79cc3c
8 changed files with 240 additions and 16 deletions
+4
View File
@@ -352,6 +352,10 @@ int suspend_thread(thread_id thread);
thread_id find_thread(const char *);
status_t send_data(thread_id thread, int32 code, const void *buffer, size_t buffer_size);
status_t receive_data(thread_id *sender, void *buffer, size_t buffer_size);
bool has_data(thread_id thread);
status_t snooze(bigtime_t);
status_t _get_thread_info(thread_id id, thread_info *info, size_t size);