xref: /freebsd-src/contrib/libevent/mm-internal.h (revision b50261e21f39a6c7249a49e7b60aa878c98512a8)
1c43e99fdSEd Maste /*
2c43e99fdSEd Maste  * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
3c43e99fdSEd Maste  *
4c43e99fdSEd Maste  * Redistribution and use in source and binary forms, with or without
5c43e99fdSEd Maste  * modification, are permitted provided that the following conditions
6c43e99fdSEd Maste  * are met:
7c43e99fdSEd Maste  * 1. Redistributions of source code must retain the above copyright
8c43e99fdSEd Maste  *    notice, this list of conditions and the following disclaimer.
9c43e99fdSEd Maste  * 2. Redistributions in binary form must reproduce the above copyright
10c43e99fdSEd Maste  *    notice, this list of conditions and the following disclaimer in the
11c43e99fdSEd Maste  *    documentation and/or other materials provided with the distribution.
12c43e99fdSEd Maste  * 3. The name of the author may not be used to endorse or promote products
13c43e99fdSEd Maste  *    derived from this software without specific prior written permission.
14c43e99fdSEd Maste  *
15c43e99fdSEd Maste  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16c43e99fdSEd Maste  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17c43e99fdSEd Maste  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18c43e99fdSEd Maste  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19c43e99fdSEd Maste  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20c43e99fdSEd Maste  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21c43e99fdSEd Maste  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22c43e99fdSEd Maste  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23c43e99fdSEd Maste  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24c43e99fdSEd Maste  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25c43e99fdSEd Maste  */
26c43e99fdSEd Maste #ifndef MM_INTERNAL_H_INCLUDED_
27c43e99fdSEd Maste #define MM_INTERNAL_H_INCLUDED_
28c43e99fdSEd Maste 
29c43e99fdSEd Maste #include <sys/types.h>
30c43e99fdSEd Maste 
31c43e99fdSEd Maste #ifdef __cplusplus
32c43e99fdSEd Maste extern "C" {
33c43e99fdSEd Maste #endif
34c43e99fdSEd Maste 
35c43e99fdSEd Maste #ifndef EVENT__DISABLE_MM_REPLACEMENT
36c43e99fdSEd Maste /* Internal use only: Memory allocation functions. We give them nice short
37c43e99fdSEd Maste  * mm_names for our own use, but make sure that the symbols have longer names
38c43e99fdSEd Maste  * so they don't conflict with other libraries (like, say, libmm). */
39c43e99fdSEd Maste 
40c43e99fdSEd Maste /** Allocate uninitialized memory.
41c43e99fdSEd Maste  *
42c43e99fdSEd Maste  * @return On success, return a pointer to sz newly allocated bytes.
43c43e99fdSEd Maste  *     On failure, set errno to ENOMEM and return NULL.
44c43e99fdSEd Maste  *     If the argument sz is 0, simply return NULL.
45c43e99fdSEd Maste  */
46*b50261e2SCy Schubert EVENT2_EXPORT_SYMBOL
47c43e99fdSEd Maste void *event_mm_malloc_(size_t sz);
48c43e99fdSEd Maste 
49c43e99fdSEd Maste /** Allocate memory initialized to zero.
50c43e99fdSEd Maste  *
51c43e99fdSEd Maste  * @return On success, return a pointer to (count * size) newly allocated
52c43e99fdSEd Maste  *     bytes, initialized to zero.
53c43e99fdSEd Maste  *     On failure, or if the product would result in an integer overflow,
54c43e99fdSEd Maste  *     set errno to ENOMEM and return NULL.
55c43e99fdSEd Maste  *     If either arguments are 0, simply return NULL.
56c43e99fdSEd Maste  */
57*b50261e2SCy Schubert EVENT2_EXPORT_SYMBOL
58c43e99fdSEd Maste void *event_mm_calloc_(size_t count, size_t size);
59c43e99fdSEd Maste 
60c43e99fdSEd Maste /** Duplicate a string.
61c43e99fdSEd Maste  *
62c43e99fdSEd Maste  * @return On success, return a pointer to a newly allocated duplicate
63c43e99fdSEd Maste  *     of a string.
64c43e99fdSEd Maste  *     Set errno to ENOMEM and return NULL if a memory allocation error
65c43e99fdSEd Maste  *     occurs (or would occur) in the process.
66c43e99fdSEd Maste  *     If the argument str is NULL, set errno to EINVAL and return NULL.
67c43e99fdSEd Maste  */
68*b50261e2SCy Schubert EVENT2_EXPORT_SYMBOL
69c43e99fdSEd Maste char *event_mm_strdup_(const char *str);
70c43e99fdSEd Maste 
71*b50261e2SCy Schubert EVENT2_EXPORT_SYMBOL
72c43e99fdSEd Maste void *event_mm_realloc_(void *p, size_t sz);
73*b50261e2SCy Schubert EVENT2_EXPORT_SYMBOL
74c43e99fdSEd Maste void event_mm_free_(void *p);
75c43e99fdSEd Maste #define mm_malloc(sz) event_mm_malloc_(sz)
76c43e99fdSEd Maste #define mm_calloc(count, size) event_mm_calloc_((count), (size))
77c43e99fdSEd Maste #define mm_strdup(s) event_mm_strdup_(s)
78c43e99fdSEd Maste #define mm_realloc(p, sz) event_mm_realloc_((p), (sz))
79c43e99fdSEd Maste #define mm_free(p) event_mm_free_(p)
80c43e99fdSEd Maste #else
81c43e99fdSEd Maste #define mm_malloc(sz) malloc(sz)
82c43e99fdSEd Maste #define mm_calloc(n, sz) calloc((n), (sz))
83c43e99fdSEd Maste #define mm_strdup(s) strdup(s)
84c43e99fdSEd Maste #define mm_realloc(p, sz) realloc((p), (sz))
85c43e99fdSEd Maste #define mm_free(p) free(p)
86c43e99fdSEd Maste #endif
87c43e99fdSEd Maste 
88c43e99fdSEd Maste #ifdef __cplusplus
89c43e99fdSEd Maste }
90c43e99fdSEd Maste #endif
91c43e99fdSEd Maste 
92c43e99fdSEd Maste #endif
93