WAVEWATCH III  beta 0.0.1
w3getmem.c File Reference

Go to the source code of this file.

Functions

double get_memory_ (void)
 

Function Documentation

◆ get_memory_()

double get_memory_ ( void  )

Definition at line 43 of file w3getmem.c.

45 {
46  long Kbytes;
47  double Mbytes;
48  struct rusage RU;
49 
50  getrusage(RUSAGE_SELF, &RU);
51 
52  Kbytes = RU.ru_maxrss;
53 
54  Mbytes = ((double) Kbytes) / 1024.0;
55 
56  return Mbytes;
57 }