Coverage Report

Created: 2024-07-23 06:39

/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
21.1M
{
5
21.1M
   if(pool)
6
122k
   {
7
122k
      return pool->allocate(size);
8
122k
   }
9
21.0M
   return ::operator new(size);
10
21.1M
}
11
12
void operator delete(void* ptr, resip::PoolBase* pool)
13
978
{
14
978
   if(pool)
15
2
   {
16
2
      pool->deallocate(ptr);
17
2
      return;
18
2
   }
19
976
   ::operator delete(ptr);
20
976
}
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
 */