Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the unit of `ru_maxrss` on Linux?

This is from man getrusage

struct rusage {
    struct timeval ru_utime; /* user time used */
    struct timeval ru_stime; /* system time used */
    long   ru_maxrss;        /* maximum resident set size */
    long   ru_ixrss;         /* integral shared 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 */
};

However it's not specified what's the unit.

I saw FreeBSD's documentation which says it's in kilobytes, but I'm not sure about what unit it is on Linux.

like image 206
Tianyang Li Avatar asked Aug 21 '12 08:08

Tianyang Li


People also ask

What is Ru_maxrss?

The above code uses ru_maxrss attribute of rusage structure. It gives the value of maximum resident set size.

What is Rusage?

The function getrusage and the data type struct rusage are used to examine the resource usage of a process. They are declared in sys/resource.

What does Getrusage return?

getrusage() returns resource usage measures for who, which can be one of the following: RUSAGE_SELF Return resource usage statistics for the calling process, which is the sum of resources used by all threads in the process.


2 Answers

It's not a standard field for the rusage structure so POSIX doesn't mandate anything about it. But on Linux

ru_maxrss (since Linux 2.6.32)

This is the maximum resident set size used (in kilobytes). For RUSAGE_CHILDREN, this is the resident set size of the largest child, not the maximum resident set size of the process tree.

like image 92
cnicutar Avatar answered Sep 18 '22 15:09

cnicutar


The man page says:

ru_maxrss (since Linux 2.6.32)

This is the maximum resident set size used (in kilobytes). For RUSAGE_CHILDREN, this is the resident set size of the largest child, not the maximum resident set size of the process tree.

So, it's expressed in kilobytes, just like in BSD.

like image 27
Frédéric Hamidi Avatar answered Sep 19 '22 15:09

Frédéric Hamidi