source: trunk/gsdl/packages/yaz/include/yaz/nmem.h@ 1343

Last change on this file since 1343 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1/*
2 * Copyright (c) 1995-2000, Index Data.
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation, in whole or in part, for any purpose, is hereby granted,
6 * provided that:
7 *
8 * 1. This copyright and permission notice appear in all copies of the
9 * software and its documentation. Notices of copyright or attribution
10 * which appear at the beginning of any file must remain unchanged.
11 *
12 * 2. The names of Index Data or the individual authors may not be used to
13 * endorse or promote products derived from this software without specific
14 * prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
18 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
19 * IN NO EVENT SHALL INDEX DATA BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
20 * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES
21 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR
22 * NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 * OF THIS SOFTWARE.
25 *
26 * $Log$
27 * Revision 1.1 2000/08/03 03:10:39 johnmcp
28 * Added the YAZ toolkit source to the packages directory (for z39.50 stuff)
29 *
30 * Revision 1.2 2000/02/28 11:20:06 adam
31 * Using autoconf. New definitions: YAZ_BEGIN_CDECL/YAZ_END_CDECL.
32 *
33 * Revision 1.1 1999/11/30 13:47:11 adam
34 * Improved installation. Moved header files to include/yaz.
35 *
36 * Revision 1.10 1998/10/19 15:24:20 adam
37 * New nmem utility, nmem_transfer, that transfer blocks from one
38 * NMEM to another.
39 *
40 * Revision 1.9 1998/10/13 16:00:17 adam
41 * Implemented nmem_critical_{enter,leave}.
42 *
43 * Revision 1.8 1998/07/20 12:35:59 adam
44 * Added more memory diagnostics (when NMEM_DEBUG is 1).
45 *
46 * Revision 1.7 1997/10/31 12:20:08 adam
47 * Improved memory debugging for xmalloc/nmem.c. References to NMEM
48 * instead of ODR in n ESPEC-1 handling in source d1_espec.c.
49 * Bug fix: missing fclose in data1_read_espec1.
50 *
51 */
52
53#ifndef NMEM_H
54#define NMEM_H
55#include <yaz/yconfig.h>
56
57#define NMEM_DEBUG 0
58
59#ifndef NMEM_DEBUG
60#define NMEM_DEBUG 0
61#endif
62
63YAZ_BEGIN_CDECL
64
65typedef struct nmem_block
66{
67 char *buf; /* memory allocated in this block */
68 int size; /* size of buf */
69 int top; /* top of buffer */
70 struct nmem_block *next;
71} nmem_block;
72
73typedef struct nmem_control
74{
75 int total;
76 nmem_block *blocks;
77 struct nmem_control *next;
78} nmem_control;
79
80typedef struct nmem_control *NMEM;
81
82YAZ_EXPORT void nmem_reset(NMEM n);
83YAZ_EXPORT int nmem_total(NMEM n);
84YAZ_EXPORT char *nmem_strdup (NMEM mem, const char *src);
85YAZ_EXPORT void nmem_transfer (NMEM dst, NMEM src);
86
87YAZ_EXPORT void nmem_critical_enter (void);
88YAZ_EXPORT void nmem_critical_leave (void);
89
90#if NMEM_DEBUG
91
92YAZ_EXPORT NMEM nmem_create_f(const char *file, int line);
93YAZ_EXPORT void nmem_destroy_f(const char *file, int line, NMEM n);
94YAZ_EXPORT void *nmem_malloc_f(const char *file, int line, NMEM n, int size);
95#define nmem_create() nmem_create_f(__FILE__, __LINE__)
96#define nmem_destroy(x) nmem_destroy_f(__FILE__, __LINE__, (x))
97#define nmem_malloc(x, y) nmem_malloc_f(__FILE__, __LINE__, (x), (y))
98
99#else
100
101YAZ_EXPORT NMEM nmem_create(void);
102YAZ_EXPORT void nmem_destroy(NMEM n);
103YAZ_EXPORT void *nmem_malloc(NMEM n, int size);
104
105#endif
106
107YAZ_EXPORT void nmem_init (void);
108YAZ_EXPORT void nmem_exit (void);
109
110YAZ_END_CDECL
111
112#endif
Note: See TracBrowser for help on using the repository browser.