X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..0ff40b115c4a7f131b2ffab880faf600e96cfc06:/src/xbt/dict_elm.c diff --git a/src/xbt/dict_elm.c b/src/xbt/dict_elm.c index f7586e5901..28c0901024 100644 --- a/src/xbt/dict_elm.c +++ b/src/xbt/dict_elm.c @@ -1,7 +1,6 @@ /* dict - a generic dictionary, variation over hash table */ -/* Copyright (c) 2004-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -11,21 +10,10 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict_elm, xbt_dict, "Dictionaries internals"); xbt_mallocator_t dict_elm_mallocator = NULL; -xbt_mallocator_t dict_het_elm_mallocator = NULL; -xbt_dictelm_t xbt_dictelm_new(xbt_dict_t dict, const char *key, int key_len, unsigned int hash_code, void *content, - void_f_pvoid_t free_f) +xbt_dictelm_t xbt_dictelm_new(const char* key, int key_len, unsigned int hash_code, void* content) { - xbt_dictelm_t element; - - if (dict->homogeneous) { - xbt_assert(!free_f, "Cannot set an individual free function in homogeneous dicts."); - element = xbt_mallocator_get(dict_elm_mallocator); - } else { - xbt_het_dictelm_t het_element = xbt_mallocator_get(dict_het_elm_mallocator); - het_element->free_f = free_f; - element = &het_element->element; - } + xbt_dictelm_t element = xbt_mallocator_get(dict_elm_mallocator); element->key = xbt_new(char, key_len + 1); memcpy(element->key, key, key_len); element->key[key_len] = '\0'; @@ -45,14 +33,8 @@ void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element) char *key = element->key; void *content = element->content; void_f_pvoid_t free_f; - if (dict->homogeneous) { - free_f = dict->free_f; - xbt_mallocator_release(dict_elm_mallocator, element); - } else { - xbt_het_dictelm_t het_element = (xbt_het_dictelm_t)element; - free_f = het_element->free_f; - xbt_mallocator_release(dict_het_elm_mallocator, het_element); - } + free_f = dict->free_f; + xbt_mallocator_release(dict_elm_mallocator, element); xbt_free(key); if (free_f && content) @@ -63,14 +45,8 @@ void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element) void xbt_dictelm_set_data(xbt_dict_t dict, xbt_dictelm_t element, void *data, void_f_pvoid_t free_ctn) { void_f_pvoid_t free_f; - if (dict->homogeneous) { - free_f = dict->free_f; - xbt_assert(!free_ctn, "Cannot set an individual free function in homogeneous dicts."); - } else { - xbt_het_dictelm_t het_element = (xbt_het_dictelm_t)element; - free_f = het_element->free_f; - het_element->free_f = free_ctn; - } + free_f = dict->free_f; + xbt_assert(!free_ctn, "Cannot set an individual free function in homogeneous dicts."); if (free_f && element->content) free_f(element->content); @@ -82,8 +58,3 @@ void *dict_elm_mallocator_new_f(void) { return xbt_new(s_xbt_dictelm_t, 1); } - -void *dict_het_elm_mallocator_new_f(void) -{ - return xbt_new(s_xbt_het_dictelm_t, 1); -}