X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ae87d9697ce445eaa3221750fc5e18553f879498..64ea8dcf1daac53da58d65aa91b7452aae8b13b7:/src/include/mc/datatypes.h diff --git a/src/include/mc/datatypes.h b/src/include/mc/datatypes.h index ff7fa02fa4..54c004d13b 100644 --- a/src/include/mc/datatypes.h +++ b/src/include/mc/datatypes.h @@ -16,7 +16,7 @@ SG_BEGIN_DECL() -typedef struct s_stack_region{ +struct s_stack_region{ void *address; #if HAVE_UCONTEXT_H ucontext_t* context; @@ -24,7 +24,9 @@ typedef struct s_stack_region{ size_t size; int block; int process_index; -}s_stack_region_t, *stack_region_t; +}; +typedef struct s_stack_region s_stack_region_t; +typedef struct s_stack_region* stack_region_t; SG_END_DECL()