Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a boolean to each node indicating whether it's an internal node or not to allow...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 23 Feb 2005 08:16:07 +0000 (08:16 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 23 Feb 2005 08:16:07 +0000 (08:16 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1044 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/xbt/dict_private.h

index 14d5a21..c0117b5 100644 (file)
@@ -22,6 +22,7 @@ typedef struct xbt_dictelm_ {
   char           *key;
   int             key_len;
   int             offset; /* offset on the key */
   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*/
 
   void           *content;
   void_f_pvoid_t *free_f; /*pointer to the function to call to free this ctn*/