#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <string>
#include <iostream>
#include <iomanip>
#include "abkcpunorm.h"
Include dependency graph for infolines.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
struct | CmdLine |
struct | ExecLocation |
class | InfoLine |
class | MaxMem |
class | MemChange |
class | MemUsage |
struct | Platform |
struct | SysInfo |
struct | TimeStamp |
struct | User |
struct | UserHomeDir |
Functions | |
std::ostream & | operator<< (std::ostream &, const MemUsage &) |
std::ostream & | operator<< (std::ostream &, const SysInfo &) |
|
Definition at line 114 of file infolines.cxx. References SysInfo::cpunorm, SysInfo::mu, SysInfo::pl, SysInfo::tm, and SysInfo::us.
00115 {
00116 out << si.tm
00117 << si.pl
00118 << si.us
00119 << si.mu
00120 << si.cpunorm << endl;
00121 return out;
00122 }
|
|
Definition at line 104 of file infolines.cxx. References MemUsage::getEstimate().
00105 { 00106 //out << "# Memory usage : " << setw(7) << memu.getPeakMem() << "Mb (peak) " 00107 // << setw(4) << memu.getEstimate() << "Mb (estimate)" << endl; 00108 out << "# Memory usage : " << setw(7) << memu.getEstimate() 00109 << "Mb (estimate)" << endl; 00110 return out; 00111 } |
Here is the call graph for this function: