LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
Implementation of Citizen. More...
#include <iostream>
#include <boost/shared_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/format.hpp>
#include <ctype.h>
#include <cerrno>
#include "lsst/daf/base/Citizen.h"
#include "lsst/pex/exceptions.h"
#include "lsst/utils/Demangle.h"
Go to the source code of this file.
Classes | |
class | CitizenInit |
Called once when the memory system is being initialised. More... | |
Functions | |
callbacks | |
Set the New/Delete callback functions; in each case the previously installed callback is returned. These callback functions return a value which is Added to the previously registered id. The default callback functions are called default{New,Delete}Callback; you may want to set a break point in these callbacks from your favourite debugger | |
dafBase::Citizen::memId | defaultNewCallback (dafBase::Citizen::memId const cid) |
Default NewCallback. More... | |
dafBase::Citizen::memId | defaultDeleteCallback (dafBase::Citizen const *ptr) |
Default DeleteCallback. More... | |
dafBase::Citizen::memId | defaultCorruptionCallback (dafBase::Citizen const *ptr) |
Default CorruptionCallback. More... | |
Variables | |
CitizenInit | one |
Implementation of Citizen.
Definition in file Citizen.cc.
dafBase::Citizen::memId defaultCorruptionCallback | ( | dafBase::Citizen const * | ptr | ) |
Default CorruptionCallback.
ptr | About-to-be deleted Citizen |
Definition at line 465 of file Citizen.cc.
dafBase::Citizen::memId defaultDeleteCallback | ( | dafBase::Citizen const * | ptr | ) |
Default DeleteCallback.
ptr | About-to-be deleted Citizen |
Definition at line 456 of file Citizen.cc.
dafBase::Citizen::memId defaultNewCallback | ( | dafBase::Citizen::memId const | cid | ) |
Default NewCallback.
Default callbacks.
Note that these may well be the target of debugger breakpoints, so e.g. dId may well be changed behind our back
cid | ID for just-allocated Citizen |
Definition at line 446 of file Citizen.cc.
CitizenInit one |
Definition at line 155 of file Citizen.cc.