Neither unregister_wait_for_any() nor register_wait_for_any() returned

status.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9799 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-11-04 16:42:16 +00:00
parent bd00cbc6a9
commit fe5b39146f
+2 -2
View File
@@ -1288,14 +1288,14 @@ update_wait_for_any(struct team *team, thread_id child, int32 change)
static status_t
unregister_wait_for_any(struct team *team, thread_id child)
{
update_wait_for_any(team, child, -1);
return update_wait_for_any(team, child, -1);
}
static status_t
register_wait_for_any(struct team *team, thread_id child)
{
update_wait_for_any(team, child, 1);
return update_wait_for_any(team, child, 1);
}