Coverage Report

Created: 2024-04-23 06:04

/src/resiprocate/rutil/PoolBase.cxx
Line
Count
Source
1
#include "rutil/PoolBase.hxx"
2
3
void* operator new(size_t size, resip::PoolBase* pool)
4
16.8M
{
5
16.8M
   if(pool)
6
181k
   {
7
181k
      return pool->allocate(size);
8
181k
   }
9
16.6M
   return ::operator new(size);
10
16.8M
}
11
12
void operator delete(void* ptr, resip::PoolBase* pool)
13
923
{
14
923
   if(pool)
15
3
   {
16
3
      pool->deallocate(ptr);
17
3
      return;
18
3
   }
19
920
   ::operator delete(ptr);
20
920
}
21
22
23
24
/* ====================================================================
25
 * The Vovida Software License, Version 1.0 
26
 * 
27
 * Redistribution and use in source and binary forms, with or without
28
 * modification, are permitted provided that the following conditions
29
 * are met:
30
 * 
31
 * 1. Redistributions of source code must retain the above copyright
32
 *    notice, this list of conditions and the following disclaimer.
33
 * 
34
 * 2. Redistributions in binary form must reproduce the above copyright
35
 *    notice, this list of conditions and the following disclaimer in
36
 *    the documentation and/or other materials provided with the
37
 *    distribution.
38
 * 
39
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
40
 *    and "Vovida Open Communication Application Library (VOCAL)" must
41
 *    not be used to endorse or promote products derived from this
42
 *    software without prior written permission. For written
43
 *    permission, please contact vocal@vovida.org.
44
 *
45
 * 4. Products derived from this software may not be called "VOCAL", nor
46
 *    may "VOCAL" appear in their name, without prior written
47
 *    permission of Vovida Networks, Inc.
48
 * 
49
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
50
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
52
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
53
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
54
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
55
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
56
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
57
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
58
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
60
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
61
 * DAMAGE.
62
 * 
63
 * ====================================================================
64
 * 
65
 * This software consists of voluntary contributions made by Vovida
66
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
67
 * Inc.  For more information on Vovida Networks, Inc., please see
68
 * <http://www.vovida.org/>.
69
 *
70
 */