From: schnorr Date: Tue, 28 Dec 2010 23:19:46 +0000 (+0000) Subject: [trace] same field order for all specific event structures X-Git-Tag: v3.6_beta2~602 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/100c997ae6520bb2849cdeae2df85649d6da6732 [trace] same field order for all specific event structures git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9324 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/instr/instr_paje_trace.c b/src/instr/instr_paje_trace.c index 4bd20818f8..d325846f97 100644 --- a/src/instr/instr_paje_trace.c +++ b/src/instr/instr_paje_trace.c @@ -115,13 +115,12 @@ typedef struct s_popState *popState_t; typedef struct s_popState { container_t container; type_t type; - char *value; }s_popState_t; typedef struct s_startLink *startLink_t; typedef struct s_startLink { - type_t type; container_t container; + type_t type; container_t sourceContainer; char *value; char *key; @@ -129,8 +128,8 @@ typedef struct s_startLink { typedef struct s_endLink *endLink_t; typedef struct s_endLink { - type_t type; container_t container; + type_t type; container_t destContainer; char *value; char *key; @@ -138,8 +137,8 @@ typedef struct s_endLink { typedef struct s_newEvent *newEvent_t; typedef struct s_newEvent { - type_t type; container_t container; + type_t type; char *value; }s_newEvent_t;