Searched refs:_returnCode (Results 1 – 9 of 9) sorted by relevance
/haiku/src/system/libroot/os/ |
H A D | team.c | 14 wait_for_team(team_id team, status_t *_returnCode) 16 return _kern_wait_for_team(team, _returnCode);
|
H A D | thread.c | 180 wait_for_thread(thread_id thread, status_t *_returnCode) in wait_for_thread() argument 182 return _kern_wait_for_thread(thread, _returnCode); in wait_for_thread() 187 wait_for_thread_etc(thread_id thread, uint32 flags, bigtime_t timeout, status_t *_returnCode) in wait_for_thread_etc() argument 189 return _kern_wait_for_thread_etc(thread, flags, timeout, _returnCode); in wait_for_thread_etc()
|
/haiku/src/tools/fs_shell/ |
H A D | kernel_export.cpp | 25 fssh_wait_for_thread(fssh_thread_id thread, fssh_status_t *_returnCode) in fssh_wait_for_thread() argument
|
/haiku/headers/private/kernel/ |
H A D | thread.h | 146 status_t _user_wait_for_thread(thread_id id, status_t *_returnCode); 148 status_t *_returnCode);
|
H A D | team.h | 70 status_t _user_wait_for_team(team_id id, status_t *_returnCode);
|
/haiku/headers/private/system/ |
H A D | syscalls.h | 151 extern status_t _kern_wait_for_team(team_id team, status_t *_returnCode); 177 status_t *_returnCode); 179 bigtime_t timeout, status_t *_returnCode);
|
/haiku/src/system/kernel/ |
H A D | thread.cpp | 2514 status_t *_returnCode) in wait_for_thread_etc() argument 2570 if (_returnCode) in wait_for_thread_etc() 2571 *_returnCode = death.status; in wait_for_thread_etc() 2606 if (status == B_OK && _returnCode != NULL) in wait_for_thread_etc() 2607 *_returnCode = death.status; in wait_for_thread_etc() 3383 wait_for_thread(thread_id thread, status_t *_returnCode) in wait_for_thread() argument 3385 return wait_for_thread_etc(thread, 0, 0, _returnCode); in wait_for_thread()
|
H A D | team.cpp | 3862 wait_for_team(team_id id, status_t* _returnCode) in wait_for_team() argument 3876 return wait_for_thread(id, _returnCode); in wait_for_team()
|
/haiku/headers/os/kernel/ |
H A D | OS.h | 357 status_t *_returnCode);
|