X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..6e5cfd7ff86900354c20502af95ee5f751492753:/src/xbt/dict_elm.c diff --git a/src/xbt/dict_elm.c b/src/xbt/dict_elm.c index 72f2f614c2..4129989c27 100644 --- a/src/xbt/dict_elm.c +++ b/src/xbt/dict_elm.c @@ -1,8 +1,7 @@ -/* $Id$ */ +/* dict - a generic dictionary, variation over the B-tree concept */ -/* dict - a generic dictionnary, variation over the B-tree concept */ - -/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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. */ @@ -31,8 +30,9 @@ xbt_dictelm_t xbt_dictelm_new(const char *key, { xbt_dictelm_t element = xbt_mallocator_get(dict_elm_mallocator); + element->dictielem = 0; /* please free the key on free */ element->key = xbt_new(char, key_len + 1); - strncpy(element->key, key, key_len); + memcpy((void *) element->key, (void *) key, key_len); element->key[key_len] = '\0'; element->key_len = key_len; @@ -45,10 +45,29 @@ xbt_dictelm_t xbt_dictelm_new(const char *key, return element; } +xbt_dictelm_t xbt_dictielm_new(uintptr_t key, unsigned int hash_code, + uintptr_t content) +{ + xbt_dictelm_t element = xbt_mallocator_get(dict_elm_mallocator); + + element->key = (void *) key; + + element->dictielem = 1; /* please DONT free the key on free */ + element->key_len = sizeof(uintptr_t); + element->hash_code = hash_code; + + element->content = (void *) content; + element->free_f = NULL; + element->next = NULL; + + return element; +} + void xbt_dictelm_free(xbt_dictelm_t element) { if (element != NULL) { - xbt_free(element->key); + if (!element->dictielem) + xbt_free(element->key); if (element->free_f != NULL && element->content != NULL) { element->free_f(element->content);