41bdb6e20c
2001-07-06 Paul Eggert <eggert@twinsun.com> * manual/argp.texi: Remove ignored LGPL copyright notice; it's not appropriate for documentation anyway. * manual/libc-texinfo.sh: "Library General Public License" -> "Lesser General Public License". 2001-07-06 Andreas Jaeger <aj@suse.de> * All files under GPL/LGPL version 2: Place under LGPL version 2.1.
81 lines
2.5 KiB
C
81 lines
2.5 KiB
C
/* getrusage -- Get resource usage information about processes. Hurd version.
|
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <sys/resource.h>
|
|
#include <mach.h>
|
|
#include <mach/task_info.h>
|
|
#include <hurd.h>
|
|
|
|
/* Return resource usage information on process indicated by WHO
|
|
and put it in *USAGE. Returns 0 for success, -1 for failure. */
|
|
int
|
|
__getrusage (who, usage)
|
|
enum __rusage_who who;
|
|
struct rusage *usage;
|
|
{
|
|
struct task_basic_info bi;
|
|
struct task_thread_times_info tti;
|
|
mach_msg_type_number_t count;
|
|
error_t err;
|
|
|
|
switch (who)
|
|
{
|
|
case RUSAGE_SELF:
|
|
count = TASK_BASIC_INFO_COUNT;
|
|
err = __task_info (__mach_task_self (), TASK_BASIC_INFO,
|
|
(task_info_t) &bi, &count);
|
|
if (err)
|
|
return __hurd_fail (err);
|
|
|
|
count = TASK_THREAD_TIMES_INFO_COUNT;
|
|
err = __task_info (__mach_task_self (), TASK_THREAD_TIMES_INFO,
|
|
(task_info_t) &tti, &count);
|
|
if (err)
|
|
return __hurd_fail (err);
|
|
|
|
time_value_add (&bi.user_time, &tti.user_time);
|
|
time_value_add (&bi.system_time, &tti.system_time);
|
|
|
|
memset (usage, 0, sizeof (struct rusage));
|
|
|
|
usage->ru_utime.tv_sec = bi.user_time.seconds;
|
|
usage->ru_utime.tv_usec = bi.user_time.microseconds;
|
|
usage->ru_stime.tv_sec = bi.system_time.seconds;
|
|
usage->ru_stime.tv_usec = bi.system_time.microseconds;
|
|
|
|
break;
|
|
|
|
case RUSAGE_CHILDREN:
|
|
/* XXX Not implemented yet. However, zero out USAGE to be
|
|
consistent with the wait3 and wait4 functions. */
|
|
memset (usage, 0, sizeof (struct rusage));
|
|
|
|
break;
|
|
|
|
default:
|
|
return EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
weak_alias (__getrusage, getrusage)
|