Fixed some header issues (mostly int, status_t).

Replaced <types.h> with <sys/types.h> because that's what those headers
were looking for.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1118 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-09-23 02:31:05 +00:00
parent b005dbe305
commit 085320eab2
4 changed files with 9 additions and 8 deletions
+3 -3
View File
@@ -351,9 +351,9 @@ typedef int32 (*thread_func) (void *);
* @note the maximum length of name is B_OS_NAME_LENGTH characters
*/
thread_id spawn_thread (thread_func, const char *, int32, void *);
int kill_thread(thread_id thread);
int resume_thread(thread_id thread);
int suspend_thread(thread_id thread);
status_t kill_thread(thread_id thread);
status_t resume_thread(thread_id thread);
status_t suspend_thread(thread_id thread);
thread_id find_thread(const char *);