2 * Copyright (c) 1995-2003, Index Data.
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,
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.
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.
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
26 * $Id: nmem.h,v 1.10 2003-01-06 08:20:27 adam Exp $
31 #include <yaz/yconfig.h>
41 typedef struct nmem_block
43 char *buf; /* memory allocated in this block */
44 int size; /* size of buf */
45 int top; /* top of buffer */
46 struct nmem_block *next;
49 typedef struct nmem_control
53 struct nmem_control *next;
56 typedef struct nmem_mutex *NMEM_MUTEX;
57 YAZ_EXPORT void nmem_mutex_create(NMEM_MUTEX *);
58 YAZ_EXPORT void nmem_mutex_enter(NMEM_MUTEX);
59 YAZ_EXPORT void nmem_mutex_leave(NMEM_MUTEX);
60 YAZ_EXPORT void nmem_mutex_destroy(NMEM_MUTEX *);
62 typedef struct nmem_control *NMEM;
64 YAZ_EXPORT void nmem_reset(NMEM n);
65 YAZ_EXPORT int nmem_total(NMEM n);
66 YAZ_EXPORT char *nmem_strdup (NMEM mem, const char *src);
67 YAZ_EXPORT int *nmem_intdup (NMEM mem, int v);
68 YAZ_EXPORT void nmem_transfer (NMEM dst, NMEM src);
70 YAZ_EXPORT void nmem_critical_enter (void);
71 YAZ_EXPORT void nmem_critical_leave (void);
75 YAZ_EXPORT NMEM nmem_create_f(const char *file, int line);
76 YAZ_EXPORT void nmem_destroy_f(const char *file, int line, NMEM n);
77 YAZ_EXPORT void *nmem_malloc_f(const char *file, int line, NMEM n, int size);
78 #define nmem_create() nmem_create_f(__FILE__, __LINE__)
79 #define nmem_destroy(x) nmem_destroy_f(__FILE__, __LINE__, (x))
80 #define nmem_malloc(x, y) nmem_malloc_f(__FILE__, __LINE__, (x), (y))
82 YAZ_EXPORT void nmem_print_list (void);
86 YAZ_EXPORT NMEM nmem_create(void);
87 YAZ_EXPORT void nmem_destroy(NMEM n);
88 YAZ_EXPORT void *nmem_malloc(NMEM n, int size);
90 #define nmem_print_list()
94 YAZ_EXPORT void nmem_init (void);
95 YAZ_EXPORT void nmem_exit (void);
96 YAZ_EXPORT int yaz_errno (void);
97 YAZ_EXPORT void yaz_set_errno (int v);
98 YAZ_EXPORT void yaz_strerror(char *buf, int max);