Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / ntp / dist / include / isc / mem.h
blob6b8b9e8c2da1671fcb41cf2902d6cc2c77650ab0
1 /* $NetBSD$ */
3 /*
4 * libntp local override of isc/mem.h to stub it out.
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.
10 * NOTE: this assumes the system malloc is thread-safe and does
11 * not use any normal lib/isc locking.
15 * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
16 * Copyright (C) 1997-2001 Internet Software Consortium.
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.
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.
31 /* Id: mem.h,v 1.78.120.3 2009/02/11 03:07:01 jinmei Exp */
33 #ifndef ISC_MEM_H
34 #define ISC_MEM_H 1
36 #include <stdio.h>
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>
44 #include <ntp_stdlib.h>
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")
57 #endif /* ISC_MEM_H */