CMS 3D CMS Logo

Public Member Functions | Public Attributes

edm::service::smapsInfo Struct Reference

#include <Memory.h>

List of all members.

Public Member Functions

bool operator== (const smapsInfo &p) const
bool operator> (const smapsInfo &p) const
 smapsInfo ()
 smapsInfo (double private_sz, double pss_sz)

Public Attributes

double private_
double pss_

Detailed Description

Definition at line 38 of file Memory.h.


Constructor & Destructor Documentation

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

Definition at line 40 of file Memory.h.

:private_(),pss_() {}
edm::service::smapsInfo::smapsInfo ( double  private_sz,
double  pss_sz 
) [inline]

Definition at line 41 of file Memory.h.

: private_(private_sz),pss_(pss_sz) {}

Member Function Documentation

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

Definition at line 43 of file Memory.h.

References private_, and pss_.

      { return private_==p.private_ && pss_==p.pss_; }
bool edm::service::smapsInfo::operator> ( const smapsInfo p) const [inline]

Definition at line 46 of file Memory.h.

References private_, and pss_.

      { return private_>p.private_ || pss_>p.pss_; }

Member Data Documentation

Definition at line 49 of file Memory.h.

Referenced by edm::service::SimpleMemoryCheck::fetchSmaps(), operator==(), and operator>().

Definition at line 50 of file Memory.h.

Referenced by edm::service::SimpleMemoryCheck::fetchSmaps(), operator==(), and operator>().