SST
13.1.0
Structural Simulation Toolkit
|
Public Member Functions | |
void * | operator new (std::size_t size) noexcept |
Allocates memory from a memory pool for a new Activity. | |
void | operator delete (void *ptr) |
Returns memory for this Activity to the appropriate memory pool. More... | |
virtual std::string | toString () const |
Get a string represenation of the entry. More... | |
virtual void | print (const std::string &header, Output &out) const |
![]() | |
virtual const char * | cls_name () const =0 |
virtual void | serialize_order (serializer &ser)=0 |
virtual uint32_t | cls_id () const =0 |
virtual std::string | serialization_name () const =0 |
Additional Inherited Members | |
![]() | |
static constexpr uint32_t | NullClsId = std::numeric_limits<uint32_t>::max() |
![]() | |
enum | cxn_flag_t { ConstructorFlag } |
![]() | |
static void | serializable_abort (uint32_t line, const char *file, const char *func, const char *obj) |
void SST::Core::MemPoolItem::operator delete | ( | void * | ptr | ) |
Returns memory for this Activity to the appropriate memory pool.
Returns memory for this MemPoolItem to the appropriate memory pool.
|
virtual |
Get a string represenation of the entry.
The default version will just use the name of the class, retrieved through the cls_name() function inherited from the serialzable class, which will return the name of the last class to call one of the serialization macros (ImplementSerializable(), ImplementVirtualSerializable(), or NotSerializable()). Subclasses can override this function if they want to add additional information.
Reimplemented in SST::CoreTestMemPoolTest::MemPoolTestEvent4, SST::CoreTestMemPoolTest::MemPoolTestEvent3, SST::CoreTestMemPoolTest::MemPoolTestEvent2, SST::CoreTestMemPoolTest::MemPoolTestEvent1, SST::Clock, and SST::Activity.