Renamed thread/team syscalls to new scheme.

Added commented out wait_for_team() which we might want to have in the
final version, too.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6875 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-03-03 01:06:23 +00:00
parent 3dbf98a59a
commit ade669abd7

View File

@ -1,5 +1,5 @@
/*
** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
@ -8,8 +8,18 @@
#include "syscalls.h"
// this call does not exist in BeOS R5
#if 0
status_t
_get_team_usage_info(team_id tmid, int32 who, team_usage_info *ti, size_t size)
wait_for_team(team_id team, status_t *_returnCode)
{
return _kern_wait_for_team(team, _returnCode);
}
#endif
status_t
_get_team_usage_info(team_id team, int32 who, team_usage_info *ti, size_t size)
{
// size is not yet used, but may if team_usage_info changes
(void)size;
@ -20,28 +30,28 @@ _get_team_usage_info(team_id tmid, int32 who, team_usage_info *ti, size_t size)
status_t
kill_team(team_id team)
kill_team(team_id team)
{
return sys_kill_team(team);
return _kern_kill_team(team);
}
status_t
_get_team_info(team_id team, team_info *info, size_t size)
{
// size is not yet used, but may if team_info changes
(void)size;
if (info == NULL || size != sizeof(team_info))
return B_BAD_VALUE;
return sys_get_team_info(team, info);
return _kern_get_team_info(team, info);
}
status_t
_get_next_team_info(int32 *cookie, team_info *info, size_t size)
{
// size is not yet used, but may if team_info changes
(void)size;
if (info == NULL || size != sizeof(team_info))
return B_BAD_VALUE;
return sys_get_next_team_info(cookie, info);
return _kern_get_next_team_info(cookie, info);
}