diff options
Diffstat (limited to 'isisd/dict.c')
| -rw-r--r-- | isisd/dict.c | 32 | 
1 files changed, 13 insertions, 19 deletions
diff --git a/isisd/dict.c b/isisd/dict.c index a78b82ac..35cb924c 100644 --- a/isisd/dict.c +++ b/isisd/dict.c @@ -13,19 +13,16 @@   * This source code may be translated into executable form and incorporated   * into proprietary software; there is no requirement for such software to   * contain a copyright notice related to this source. + * + * $Id$ + * $Name$   */ -#include <stdlib.h> -#include <stddef.h>  #include "zebra.h"  #include "zassert.h" -#define DICT_IMPLEMENTATION +#include "memory.h"  #include "dict.h" -#ifdef KAZLIB_RCSID -static const char rcsid[] = "Id: dict.c,v 1.40.2.7 2000/11/13 01:36:44 kaz"; -#endif -  /*   * These macros provide short convenient names for structure members,   * which are embellished with dict_ prefixes so that they are @@ -243,7 +240,7 @@ static int verify_dict_has_node(dnode_t *nil, dnode_t *root, dnode_t *node)  dict_t *dict_create(dictcount_t maxcount, dict_comp_t comp)  { -    dict_t *new = malloc(sizeof *new); +    dict_t *new = XCALLOC(MTYPE_ISIS_DICT, sizeof(dict_t));      if (new) {  	new->compare = comp; @@ -284,7 +281,7 @@ void dict_set_allocator(dict_t *dict, dnode_alloc_t al,  void dict_destroy(dict_t *dict)  {      assert (dict_isempty(dict)); -    free(dict); +    XFREE(MTYPE_ISIS_DICT, dict);  }  /* @@ -307,9 +304,6 @@ void dict_free_nodes(dict_t *dict)  void dict_free(dict_t *dict)  { -#ifdef KAZLIB_OBSOLESCENT_DEBUG -    assert ("call to obsolescent function dict_free()" && 0); -#endif      dict_free_nodes(dict);  } @@ -810,7 +804,7 @@ dnode_t *dict_delete(dict_t *dict, dnode_t *delete)  int dict_alloc_insert(dict_t *dict, const void *key, void *data)  { -    dnode_t *node = dict->allocnode(dict->context); +    dnode_t *node = dict->allocnode (dict->context);      if (node) {  	dnode_init(node, data); @@ -946,17 +940,17 @@ int dict_contains(dict_t *dict, dnode_t *node)  static dnode_t *dnode_alloc(void *context)  { -    return malloc(sizeof *dnode_alloc(NULL)); +    return XCALLOC(MTYPE_ISIS_DICT_NODE, sizeof(dnode_t));  }  static void dnode_free(dnode_t *node, void *context)  { -    free(node); +    XFREE(MTYPE_ISIS_DICT_NODE, node);  }  dnode_t *dnode_create(void *data)  { -    dnode_t *new = malloc(sizeof *new); +    dnode_t *new = XCALLOC(MTYPE_ISIS_DICT_NODE, sizeof(dnode_t));      if (new) {  	new->data = data;  	new->parent = NULL; @@ -978,7 +972,7 @@ dnode_t *dnode_init(dnode_t *dnode, void *data)  void dnode_destroy(dnode_t *dnode)  {      assert (!dnode_is_in_a_dict(dnode)); -    free(dnode); +    XFREE(MTYPE_ISIS_DICT_NODE, dnode);  }  void *dnode_get(dnode_t *dnode) @@ -1232,7 +1226,7 @@ static int comparef(const void *key1, const void *key2)  static char *dupstring(char *str)  {      int sz = strlen(str) + 1; -    char *new = malloc(sz); +    char *new = XCALLOC(MTYPE_ISIS_TMP, sz);      if (new)  	memcpy(new, str, sz);      return new; @@ -1347,7 +1341,7 @@ int main(void)  	"s                      switch to non-functioning allocator\n"  	"q                      quit"; -    for (i = 0; i < sizeof darray / sizeof *darray; i++) +    for (i = 0; i < 10; i++)  	dict_init(&darray[i], DICTCOUNT_T_MAX, comparef);      for (;;) {  | 
