X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a201b7ceece70d2bc461ac48c8b746a36d07243..a46bcd2115b2f8df2b5a2a9e2e8f186a11a72385:/src/xbt/dict_cursor.c diff --git a/src/xbt/dict_cursor.c b/src/xbt/dict_cursor.c index b64b6bbb62..807e59197e 100644 --- a/src/xbt/dict_cursor.c +++ b/src/xbt/dict_cursor.c @@ -1,6 +1,7 @@ /* dict_cursor - iterators over dictionnaries */ -/* 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. */ @@ -185,3 +186,24 @@ XBT_INLINE void *xbt_dict_cursor_get_data(xbt_dict_cursor_t cursor) return cursor->current->content; } + +/** + * @brief Set current data + * @param cursor the cursor + * @param data the new data + * @param free_ctn the function to free the new data + */ +XBT_INLINE void xbt_dict_cursor_set_data(xbt_dict_cursor_t cursor, + void *data, void_f_pvoid_t free_ctn) +{ + __cursor_not_null(cursor); + if(cursor->current->free_f) + cursor->current->free_f(cursor->current->content); + + cursor->current->content = data; + cursor->current->free_f = free_ctn; + return; +} + + +