X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/504b4d20dd2db9ea1eaa9c4b390b2a412d7c9779..4a201b7ceece70d2bc461ac48c8b746a36d07243:/src/gras/Virtu/virtu_sg.h diff --git a/src/gras/Virtu/virtu_sg.h b/src/gras/Virtu/virtu_sg.h index dc654a8922..d9e291daba 100644 --- a/src/gras/Virtu/virtu_sg.h +++ b/src/gras/Virtu/virtu_sg.h @@ -1,5 +1,3 @@ -/* $Id$ */ - /* virtu_sg - specific GRAS implementation for simulator */ /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved. */ @@ -12,14 +10,14 @@ #include "gras/Virtu/virtu_private.h" #include "xbt/dynar.h" -#include "simix/simix.h" /* SimGrid header */ +#include "simix/simix.h" /* SimGrid header */ #include "gras/Transport/transport_private.h" typedef struct { - int port; /* list of ports used by a server socket */ - int meas; /* (boolean) the channel is for measurements or for messages */ - smx_process_t process; - gras_socket_t socket; + int port; /* list of ports used by a server socket */ + int meas; /* (boolean) the channel is for measurements or for messages */ + smx_process_t process; + gras_socket_t socket; } gras_sg_portrec_t; /* Data for each host */ @@ -32,14 +30,14 @@ typedef struct { /* data for each socket (FIXME: find a better location for that)*/ typedef struct { - smx_process_t from_process; - smx_process_t to_process; - - smx_host_t to_host; /* Who's on other side */ - - smx_cond_t cond; - smx_mutex_t mutex; - gras_socket_t to_socket; + smx_process_t from_process; + smx_process_t to_process; + + smx_host_t to_host; /* Who's on other side */ + + smx_cond_t cond; + smx_mutex_t mutex; + gras_socket_t to_socket; } gras_trp_sg_sock_data_t;