From 100c997ae6520bb2849cdeae2df85649d6da6732 Mon Sep 17 00:00:00 2001 From: schnorr Date: Tue, 28 Dec 2010 23:19:46 +0000 Subject: [PATCH] [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 --- src/instr/instr_paje_trace.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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; -- 2.20.1