haiku/src/kernel/libroot/os/team.c
Axel Dörfler 712ec3d786 Added libroot's os/ tree.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1385 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-10-05 17:07:03 +00:00

48 lines
858 B
C

/*
** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#include <OS.h>
#include "syscalls.h"
status_t
_get_team_usage_info(team_id tmid, int32 who, team_usage_info *ti, size_t size)
{
// size is not yet used, but may if team_usage_info changes
(void)size;
// ToDo: implement _get_team_usage_info
return B_ERROR;
}
status_t
kill_team(team_id team)
{
return sys_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;
return sys_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;
return sys_get_next_team_info(cookie, info);
}