#include <FWCore/Utilities/interface/MallocOpts.h>
Public Types | |
typedef int | opt_type |
Public Member Functions | |
MallocOpts (opt_type max, opt_type trim, opt_type pad, opt_type mmap_thr) | |
MallocOpts () | |
bool | operator!= (const MallocOpts &opts) const |
bool | operator== (const MallocOpts &opts) const |
Public Attributes | |
opt_type | mmap_max_ |
opt_type | mmap_thr_ |
opt_type | top_pad_ |
opt_type | trim_thr_ |
Definition at line 34 of file MallocOpts.h.
typedef int edm::MallocOpts::opt_type |
Definition at line 36 of file MallocOpts.h.
edm::MallocOpts::MallocOpts | ( | ) | [inline] |
bool edm::MallocOpts::operator!= | ( | const MallocOpts & | opts | ) | const [inline] |
Definition at line 58 of file MallocOpts.h.
References operator==().
00059 { return !operator==(opts); }
bool edm::MallocOpts::operator== | ( | const MallocOpts & | opts | ) | const [inline] |
Definition at line 50 of file MallocOpts.h.
References mmap_max_, mmap_thr_, top_pad_, and trim_thr_.
Referenced by operator!=().
00051 { 00052 return 00053 mmap_max_ == opts.mmap_max_ && 00054 trim_thr_ == opts.trim_thr_ && 00055 top_pad_ == opts.top_pad_ && 00056 mmap_thr_ == opts.mmap_thr_; 00057 }
Definition at line 45 of file MallocOpts.h.
Referenced by edm::MallocOptionSetter::adjustMallocParams(), edm::operator<<(), operator==(), edm::MallocOptionSetter::retrieveFromEnv(), and edm::MallocOptionSetter::set_mmap_max().
Definition at line 48 of file MallocOpts.h.
Referenced by edm::MallocOptionSetter::adjustMallocParams(), edm::operator<<(), operator==(), edm::MallocOptionSetter::retrieveFromEnv(), and edm::MallocOptionSetter::set_mmap_thr().
Definition at line 47 of file MallocOpts.h.
Referenced by edm::MallocOptionSetter::adjustMallocParams(), edm::operator<<(), operator==(), edm::MallocOptionSetter::retrieveFromEnv(), and edm::MallocOptionSetter::set_top_pad().
Definition at line 46 of file MallocOpts.h.
Referenced by edm::MallocOptionSetter::adjustMallocParams(), edm::operator<<(), operator==(), edm::MallocOptionSetter::retrieveFromEnv(), and edm::MallocOptionSetter::set_trim_thr().