CMS 3D CMS Logo

Public Member Functions | Public Attributes

edm::service::ProcInfo Struct Reference

#include <ProcInfoFetcher.h>

List of all members.

Public Member Functions

bool operator== (const ProcInfo &p) const
bool operator> (const ProcInfo &p) const
 ProcInfo ()
 ProcInfo (double sz, double rss_sz)

Public Attributes

double rss
double vsize

Detailed Description

Definition at line 29 of file ProcInfoFetcher.h.


Constructor & Destructor Documentation

edm::service::ProcInfo::ProcInfo ( ) [inline]

Definition at line 31 of file ProcInfoFetcher.h.

:vsize(),rss() {}
edm::service::ProcInfo::ProcInfo ( double  sz,
double  rss_sz 
) [inline]

Definition at line 32 of file ProcInfoFetcher.h.

: vsize(sz),rss(rss_sz) {}

Member Function Documentation

bool edm::service::ProcInfo::operator== ( const ProcInfo p) const [inline]

Definition at line 34 of file ProcInfoFetcher.h.

References rss, and vsize.

      { return vsize==p.vsize && rss==p.rss; }
bool edm::service::ProcInfo::operator> ( const ProcInfo p) const [inline]

Definition at line 37 of file ProcInfoFetcher.h.

References rss, and vsize.

      { return vsize>p.vsize || rss>p.rss; }

Member Data Documentation