Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/sys
File: vtimes.h
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _SYS_VTIMES_H
[17] Fix | Delete
#define _SYS_VTIMES_H 1
[18] Fix | Delete
[19] Fix | Delete
#include <features.h>
[20] Fix | Delete
[21] Fix | Delete
__BEGIN_DECLS
[22] Fix | Delete
[23] Fix | Delete
/* This interface is obsolete; use `getrusage' instead. */
[24] Fix | Delete
[25] Fix | Delete
/* Granularity of the `vm_utime' and `vm_stime' fields of a `struct vtimes'.
[26] Fix | Delete
(This is the frequency of the machine's power supply, in Hz.) */
[27] Fix | Delete
#define VTIMES_UNITS_PER_SECOND 60
[28] Fix | Delete
[29] Fix | Delete
struct vtimes
[30] Fix | Delete
{
[31] Fix | Delete
/* User time used in units of 1/VTIMES_UNITS_PER_SECOND seconds. */
[32] Fix | Delete
int vm_utime;
[33] Fix | Delete
/* System time used in units of 1/VTIMES_UNITS_PER_SECOND seconds. */
[34] Fix | Delete
int vm_stime;
[35] Fix | Delete
[36] Fix | Delete
/* Amount of data and stack memory used (kilobyte-seconds). */
[37] Fix | Delete
unsigned int vm_idsrss;
[38] Fix | Delete
/* Amount of text memory used (kilobyte-seconds). */
[39] Fix | Delete
unsigned int vm_ixrss;
[40] Fix | Delete
/* Maximum resident set size (text, data, and stack) (kilobytes). */
[41] Fix | Delete
int vm_maxrss;
[42] Fix | Delete
[43] Fix | Delete
/* Number of hard page faults (i.e. those that required I/O). */
[44] Fix | Delete
int vm_majflt;
[45] Fix | Delete
/* Number of soft page faults (i.e. those serviced by reclaiming
[46] Fix | Delete
a page from the list of pages awaiting reallocation. */
[47] Fix | Delete
int vm_minflt;
[48] Fix | Delete
[49] Fix | Delete
/* Number of times a process was swapped out of physical memory. */
[50] Fix | Delete
int vm_nswap;
[51] Fix | Delete
[52] Fix | Delete
/* Number of input operations via the file system. Note: This
[53] Fix | Delete
and `ru_oublock' do not include operations with the cache. */
[54] Fix | Delete
int vm_inblk;
[55] Fix | Delete
/* Number of output operations via the file system. */
[56] Fix | Delete
int vm_oublk;
[57] Fix | Delete
};
[58] Fix | Delete
[59] Fix | Delete
/* If CURRENT is not NULL, write statistics for the current process into
[60] Fix | Delete
*CURRENT. If CHILD is not NULL, write statistics for all terminated child
[61] Fix | Delete
processes into *CHILD. Returns 0 for success, -1 for failure. */
[62] Fix | Delete
extern int vtimes (struct vtimes * __current, struct vtimes * __child) __THROW;
[63] Fix | Delete
[64] Fix | Delete
__END_DECLS
[65] Fix | Delete
[66] Fix | Delete
#endif /* sys/vtimes.h */
[67] Fix | Delete
[68] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function