X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketImpl.cc;h=5b0ad43ae37df6e16a4c5e1444e44d22beac8cf1;hb=44d9219e6dbfc94f8a6d40a352b2d01eff6fca7c;hp=95b45cdaf65aa1ef50ec36c6efcdf1d9fe396602;hpb=51b10105e78a9ffee631223f50e63aa28bb5d2b4;p=senf.git diff --git a/Packets/PacketImpl.cc b/Packets/PacketImpl.cc index 95b45cd..5b0ad43 100644 --- a/Packets/PacketImpl.cc +++ b/Packets/PacketImpl.cc @@ -33,8 +33,19 @@ #define prefix_ ///////////////////////////////cc.p//////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////// +// senf::detail::AnnotationIndexerBase + unsigned senf::detail::AnnotationIndexerBase::maxAnnotations (0); +prefix_ void senf::detail::AnnotationIndexerBase::dump(PacketImpl * p, std::ostream & os) +{ + for(std::vector::const_iterator + i (registry().begin()), i_end (registry().end()); + i != i_end; ++i) + (*i)->v_dump(p,os); +} + /////////////////////////////////////////////////////////////////////////// // senf::detail::PacketImpl @@ -51,21 +62,6 @@ prefix_ senf::detail::PacketImpl::~PacketImpl() delete i->p; } -// This function has a problem being inlined. Somehow, often when calling this, the size of the -// resulting inlined code would be huge. Need to further debug this. - -prefix_ void senf::detail::PacketImpl::release(refcount_t n) -{ - SENF_ASSERT(refcount_ >= n); - // uah ... we need to be extremely careful here. If refcount_ is n, we want to commit suicide, - // however the destructor will remove all PacketInterpreters from the list and will thereby - // decrement refcount -> only decrenebt refcount_ when *not* caling delete - if (refcount_ == n) - delete this; - else - refcount_ -= n; -} - // interpreter chain prefix_ void senf::detail::PacketImpl::appendInterpreter(PacketInterpreterBase * p)