Deleted Added
full compact
getrusage.2 (15049) getrusage.2 (17343)
1.\" Copyright (c) 1985, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 49 unchanged lines hidden (view full) ---

58The buffer to which
59.Fa rusage
60points will be filled in with
61the following structure:
62.Bd -literal
63struct rusage {
64 struct timeval ru_utime; /* user time used */
65 struct timeval ru_stime; /* system time used */
1.\" Copyright (c) 1985, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

--- 49 unchanged lines hidden (view full) ---

58The buffer to which
59.Fa rusage
60points will be filled in with
61the following structure:
62.Bd -literal
63struct rusage {
64 struct timeval ru_utime; /* user time used */
65 struct timeval ru_stime; /* system time used */
66 long ru_maxrss; /* integral max resident set size */
66 long ru_maxrss; /* max resident set size */
67 long ru_ixrss; /* integral shared text memory size */
68 long ru_idrss; /* integral unshared data size */
69 long ru_isrss; /* integral unshared stack size */
70 long ru_minflt; /* page reclaims */
71 long ru_majflt; /* page faults */
72 long ru_nswap; /* swaps */
73 long ru_inblock; /* block input operations */
74 long ru_oublock; /* block output operations */

--- 92 unchanged lines hidden ---
67 long ru_ixrss; /* integral shared text memory size */
68 long ru_idrss; /* integral unshared data size */
69 long ru_isrss; /* integral unshared stack size */
70 long ru_minflt; /* page reclaims */
71 long ru_majflt; /* page faults */
72 long ru_nswap; /* swaps */
73 long ru_inblock; /* block input operations */
74 long ru_oublock; /* block output operations */

--- 92 unchanged lines hidden ---