Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enable timestamping of messages emitted out of any user process (such as the terminai...
[simgrid.git] / src / xbt / dict_private.h
index ce8b676..7ad6834 100644 (file)
@@ -3,7 +3,7 @@
 /* dict_elm - elements of generic dictionnaries                             */
 /* This file is not to be loaded from anywhere but dict.c                   */
 
-/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+/* Copyright (c) 2003, 2004 Martin Quinson. 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. */
@@ -13,7 +13,7 @@
 
 #include "xbt/sysdep.h"
 #include "xbt/log.h"
-#include "xbt/error.h"
+#include "xbt/ex.h"
 #include "xbt/dynar.h"
 #include "xbt/dict.h"
 
@@ -22,6 +22,7 @@ typedef struct xbt_dictelm_ {
   char           *key;
   int             key_len;
   int             offset; /* offset on the key */
+  int             internal; /* true if it's only an internal node */
   void           *content;
   void_f_pvoid_t *free_f; /*pointer to the function to call to free this ctn*/
 
@@ -35,31 +36,29 @@ typedef struct xbt_dict_ {
 typedef struct xbt_dict_cursor_ s_xbt_dict_cursor_t;
 
 /*####[ Function prototypes ]################################################*/
-void xbt_dictelm_free      (s_xbt_dictelm_t **pp_elm);
+void  xbt_dictelm_free      (s_xbt_dictelm_t **pp_elm);
 
-void xbt_dictelm_set       (s_xbt_dictelm_t **pp_head,
+void  xbt_dictelm_set       (s_xbt_dictelm_t **pp_head,
                             const char      *_key,
                             void            *data,
                             void_f_pvoid_t  *free_ctn);
-void xbt_dictelm_set_ext   (s_xbt_dictelm_t **pp_head,
+void  xbt_dictelm_set_ext   (s_xbt_dictelm_t **pp_head,
                             const char      *_key,
                             int              key_len,
                             void            *data,
                             void_f_pvoid_t  *free_ctn);
 
-xbt_error_t xbt_dictelm_get       (s_xbt_dictelm_t *p_head,
-                                    const char     *key,
-                                    /* OUT */void **data);
-xbt_error_t xbt_dictelm_get_ext   (s_xbt_dictelm_t *p_head,
-                                    const char     *key,
-                                    int             key_len,
-                                    /* OUT */void **data);
-
-xbt_error_t xbt_dictelm_remove    (s_xbt_dictelm_t *p_head,
-                                    const char  *key);
-xbt_error_t xbt_dictelm_remove_ext(s_xbt_dictelm_t *p_head,
-                                      const char  *key,
-                                      int          key_len);
+void* xbt_dictelm_get       (s_xbt_dictelm_t *p_head, 
+                            const char     *key);
+void* xbt_dictelm_get_ext   (s_xbt_dictelm_t *p_head,
+                            const char     *key,
+                            int             key_len);
+
+void xbt_dictelm_remove    (s_xbt_dictelm_t *p_head,
+                           const char  *key);
+void xbt_dictelm_remove_ext(s_xbt_dictelm_t *p_head,
+                           const char  *key,
+                           int          key_len);
 
 void         xbt_dictelm_dump      (s_xbt_dictelm_t *p_head,
                                     void_f_pvoid_t *output);