From: mquinson Date: Tue, 4 Apr 2006 13:57:45 +0000 (+0000) Subject: Typo in comments, and add the timeout to the CB context. This is mandatory to have... X-Git-Tag: v3.3~3288 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/eeb909173025be7ebe4a6d27f6044860d46dda9e?hp=1fbd5fc102ed26900150f86355554226cdf1c3b2 Typo in comments, and add the timeout to the CB context. This is mandatory to have this structure to use as asynchronous RPC calls context git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2070 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Msg/msg_private.h b/src/gras/Msg/msg_private.h index 8366af1802..54511b788a 100644 --- a/src/gras/Msg/msg_private.h +++ b/src/gras/Msg/msg_private.h @@ -88,7 +88,7 @@ void gras_cbl_free(void *); /* used to free the memory at the end */ void gras_cblist_free(void *cbl); /** - * gras_msg_cbctx_t: + * gras_msg_cb_ctx_t: * * Context associated to a given callback (to either regular message or RPC) */ @@ -96,7 +96,7 @@ struct s_gras_msg_cb_ctx { gras_socket_t expeditor; gras_msgtype_t msgtype; unsigned long int ID; - + double timeout; }; typedef struct s_gras_msg_cb_ctx s_gras_msg_cb_ctx_t;