//
      // Destructor
      //
      Item::~Item()
      {
        ASSERT(curCacheSize - record->fastFind->Size() >= 0);

        curCacheSize -= record->fastFind->Size();
        items.Unlink(this);
        AIL_mem_free_lock(data);
      }
Beispiel #2
0
 //
 // RemoveDestination
 //
 // Remove a global destination
 //
 void RemoveDestination(Destination *destination)
 {
   ASSERT(destination)
   destinations.Unlink(destination);
 }