~ubuntu-branches/ubuntu/raring/simgrid/raring

« back to all changes in this revision

Viewing changes to src/xbt/dict_cursor.c

  • Committer: Package Import Robot
  • Author(s): Martin Quinson
  • Date: 2013-01-31 00:24:51 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20130131002451-krejhf7w7h24lpsc
Tags: 3.9~rc1-1
* New upstream release: the "Grasgory" release. Major changes:
  - Gras was completely removed from this version.
  - Documentation reorganization to ease browsing it.
  - New default value for the TCP_gamma parameter: 4MiB

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
/* To traverse (simple) dicts                                               */
21
21
/* Don't add or remove entries to the dict while traversing !!!             */
22
22
/*###########################################################################*/
23
 
struct s_xbt_dict_cursor {
24
 
  xbt_dictelm_t current;
25
 
  int line;
26
 
  xbt_dict_t dict;
27
 
};
28
23
 
29
24
#undef xbt_dict_CURSOR_DEBUG
30
25
/*#define xbt_dict_CURSOR_DEBUG 1*/