From e7a9dbff59c571cabe248902f00fbb6fc428aea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 25 Nov 2004 21:22:14 +0000 Subject: [PATCH] Now uses the appropriate syscall. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10245 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/os/team.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/kernel/libroot/os/team.c b/src/kernel/libroot/os/team.c index e55ea21635..e61c9e3695 100644 --- a/src/kernel/libroot/os/team.c +++ b/src/kernel/libroot/os/team.c @@ -19,13 +19,9 @@ wait_for_team(team_id team, status_t *_returnCode) status_t -_get_team_usage_info(team_id team, int32 who, team_usage_info *ti, size_t size) +_get_team_usage_info(team_id team, int32 who, team_usage_info *info, 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; + return _kern_get_team_usage_info(team, who, info, size); }