X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketImpl.cc;h=2bd41bea6db88ddc02216d5ac646f83d693ff203;hb=46ce25973f087d30ca10eebdad6e3bfa7586ecc9;hp=777fae749bdb5e26ad8da9fed5831825940883b6;hpb=271789888cd1ae6361607616f9f4e6e460e192c4;p=senf.git diff --git a/Packets/PacketImpl.cc b/Packets/PacketImpl.cc index 777fae7..2bd41be 100644 --- a/Packets/PacketImpl.cc +++ b/Packets/PacketImpl.cc @@ -1,6 +1,8 @@ -// Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) +// $Id$ +// +// Copyright (C) 2007 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund // // This program is free software; you can redistribute it and/or modify @@ -34,6 +36,21 @@ /////////////////////////////////////////////////////////////////////////// // senf::detail::PacketImpl +// 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)