xref: /netbsd/external/bsd/ntp/dist/include/isc/mem.h (revision 6550d01e)
1 /*	$NetBSD: mem.h,v 1.1.1.1 2009/12/13 16:54:55 kardel Exp $	*/
2 
3 /*
4  * libntp local override of isc/mem.h to stub it out.
5  *
6  * include/isc is searched before any of the lib/isc include
7  * directories and should be used only for replacement NTP headers
8  * overriding headers of the same name under lib/isc.
9  *
10  * NOTE: this assumes the system malloc is thread-safe and does
11  *	 not use any normal lib/isc locking.
12  */
13 
14 /*
15  * Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
16  * Copyright (C) 1997-2001  Internet Software Consortium.
17  *
18  * Permission to use, copy, modify, and/or distribute this software for any
19  * purpose with or without fee is hereby granted, provided that the above
20  * copyright notice and this permission notice appear in all copies.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
23  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
24  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
25  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
26  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
27  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28  * PERFORMANCE OF THIS SOFTWARE.
29  */
30 
31 /* Id: mem.h,v 1.78.120.3 2009/02/11 03:07:01 jinmei Exp */
32 
33 #ifndef ISC_MEM_H
34 #define ISC_MEM_H 1
35 
36 #include <stdio.h>
37 
38 #include <isc/lang.h>
39 #include <isc/mutex.h>
40 #include <isc/platform.h>
41 #include <isc/types.h>
42 #include <isc/xml.h>
43 
44 #include <ntp_stdlib.h>
45 
46 
47 #define isc_mem_get(c, cnt)		emalloc((cnt))
48 #define isc_mem_allocate(c, cnt)	emalloc((cnt))
49 #define isc_mem_reallocate(c, mem, cnt)	erealloc((mem), (cnt))
50 #define isc_mem_put(c, mem, cnt)	free((mem))
51 #define isc_mem_free(c, mem)		free((mem))
52 #define isc_mem_strdup(c, str)		estrdup((str))
53 #define isc_mem_attach(src, ptgt)	do { *(ptgt) = (src); } while (0)
54 #define isc_mem_detach(c)		((void)(c))
55 #define isc_mem_printallactive(s)	fprintf(s, "isc_mem_printallactive() stubbed.\n")
56 
57 #endif /* ISC_MEM_H */
58