File: getrusage.h

package info (click to toggle)
gmp-ecm 7.0.4%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,728 kB
  • sloc: asm: 36,431; ansic: 34,057; xml: 885; python: 799; sh: 698; makefile: 348
file content (46 lines) | stat: -rw-r--r-- 1,484 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

#ifndef _GETRUSAGE_H
#define _GETRUSAGE_H

#if defined(__cplusplus)
extern "C"
{
#endif

#define ENODATA         61
#define	RUSAGE_SELF	     0
#define	RUSAGE_CHILDREN	-1

typedef struct
{
    long            tv_sec;
    long            tv_usec;
} tval;

typedef struct rusage
{
    tval  ru_utime;   /* user time used                      */
    tval  ru_stime;   /* system time used                    */
    long     ru_maxrss;  /* integral max resident set size      */
    long     ru_ixrss;   /* integral shared text memory size    */
    long     ru_idrss;   /* integral unshared data size         */
    long     ru_isrss;   /* integral unshared stack size        */
    long     ru_minflt;  /* page reclaims                       */
    long     ru_majflt;  /* page faults                         */
    long     ru_nswap;   /* swaps                               */
    long     ru_inblock; /* block input operations              */
    long     ru_oublock; /* block output operations             */
    long     ru_msgsnd;  /* messages sent                       */
    long     ru_msgrcv;  /* messages received                   */
    long     ru_nsignals;/* signals received                    */
    long     ru_nvcsw;   /* voluntary context switches          */
    long     ru_nivcsw;  /* involuntary context switches        */
} rusage;

int getrusage(int who, rusage *usage);

#if defined(__cplusplus)
}
#endif

#endif