SURFEX v8.1
General documentation of Surfex
getmaxrss.c
Go to the documentation of this file.
1 typedef long long int ll_t;
2 #include <sys/resource.h>
3 #include <sys/time.h>
4 ll_t
6 {
7  const ll_t scaler = 1024; /* in kilobytes */
8  ll_t rc = 0;
9  struct rusage r;
10  rc = getrusage(RUSAGE_SELF, &r);
11  rc = (rc == 0) ? (ll_t) r.ru_maxrss * scaler : 0;
12  return rc;
13 }
ll_t getmaxrss_()
Definition: getmaxrss.c:5
long long int ll_t
Definition: privpub.h:293
long long int ll_t
Definition: getmaxrss.c:1