X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/70e2dc2ea87b5eaed754277fc5043b909c9516e3..c271686fd059bd4313549ec557eb44f82109a03d:/src/surf/trace_mgr_private.h diff --git a/src/surf/trace_mgr_private.h b/src/surf/trace_mgr_private.h index 4611c81783..d05ba5b92e 100644 --- a/src/surf/trace_mgr_private.h +++ b/src/surf/trace_mgr_private.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2004, 2007, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2004, 2007, 2009-2010, 2012-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,6 +7,7 @@ #ifndef _SURF_TMGR_PRIVATE_H #define _SURF_TMGR_PRIVATE_H +#include "xbt/base.h" #include "xbt/swag.h" #include "xbt/heap.h" #include "surf/trace_mgr.h" @@ -58,18 +59,20 @@ typedef struct tmgr_trace { }; } s_tmgr_trace_t; - -typedef struct tmgr_trace_event { +/* Iterator within a trace */ +typedef struct tmgr_trace_iterator { tmgr_trace_t trace; unsigned int idx; - void *model; + void *resource; int free_me; } s_tmgr_trace_event_t; -typedef struct tmgr_history { - xbt_heap_t heap; +/* Future Event Set (collection of iterators over the traces) + * That's useful to quickly know which is the next occurring event in a set of traces. */ +typedef struct tmgr_fes { + xbt_heap_t heap; /* Content: only trace_events */ } s_tmgr_history_t; -double tmgr_event_generator_next_value(probabilist_event_generator_t generator); +XBT_PRIVATE double tmgr_event_generator_next_value(probabilist_event_generator_t generator); #endif /* _SURF_TMGR_PRIVATE_H */