* posix/glob.h (__glob_opendir_hook, __glob_readdir_hook,
[glibc.git] / resource / sys / vtimes.h
blobc4aa1cde07e5f24c1217b33796c01a0f642bf2da
1 /* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
19 #ifndef _SYS_VTIMES_H
21 #define _SYS_VTIMES_H 1
22 #include <features.h>
24 __BEGIN_DECLS
26 /* This interface is obsolete; use `getrusage' instead. */
28 /* Granularity of the `vm_utime' and `vm_stime' fields of a `struct vtimes'.
29 (This is the frequency of the machine's power supply, in Hz.) */
30 #define VTIMES_UNITS_PER_SECOND 60
32 struct vtimes
34 /* User time used in units of 1/VTIMES_UNITS_PER_SECOND seconds. */
35 int vm_utime;
36 /* System time used in units of 1/VTIMES_UNITS_PER_SECOND seconds. */
37 int vm_stime;
39 /* Amount of data and stack memory used (kilobyte-seconds). */
40 unsigned int vm_idsrss;
41 /* Amount of text memory used (kilobyte-seconds). */
42 unsigned int vm_ixrss;
43 /* Maximum resident set size (text, data, and stack) (kilobytes). */
44 int vm_maxrss;
46 /* Number of hard page faults (i.e. those that required I/O). */
47 int vm_majflt;
48 /* Number of soft page faults (i.e. those serviced by reclaiming
49 a page from the list of pages awaiting reallocation. */
50 int vm_minflt;
52 /* Number of times a process was swapped out of physical memory. */
53 int vm_nswap;
55 /* Number of input operations via the file system. Note: This
56 and `ru_oublock' do not include operations with the cache. */
57 int vm_inblk;
58 /* Number of output operations via the file system. */
59 int vm_oublk;
62 /* If CURRENT is not NULL, write statistics for the current process into
63 *CURRENT. If CHILD is not NULL, write statistics for all terminated child
64 processes into *CHILD. Returns 0 for success, -1 for failure. */
65 int vtimes __P ((struct vtimes * __current, struct vtimes * __child));
67 __END_DECLS
69 #endif /* sys/vtimes.h */