From: mquinson Date: Thu, 30 Nov 2006 09:29:17 +0000 (+0000) Subject: The waitqueue needed to store messages received without corresponding callback X-Git-Tag: v3.3~2414 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/514f4491be11bf31724f126c02442a0e1da25682 The waitqueue needed to store messages received without corresponding callback git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2945 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Msg/msg_interface.h b/src/gras/Msg/msg_interface.h index f7605c6f49..7c72a76db6 100644 --- a/src/gras/Msg/msg_interface.h +++ b/src/gras/Msg/msg_interface.h @@ -25,9 +25,12 @@ typedef struct { char *name; unsigned int name_len; - /*queue of msgs storing the ones got while msg_wait'ing for something else */ + /* queue storing the msgs got while msg_wait'ing for something else. Reuse them ASAP. */ xbt_dynar_t msg_queue; /* elm type: s_gras_msg_t */ + /* queue storing the msgs without callback got when handling. Feed them to wait() */ + xbt_dynar_t msg_waitqueue; /* elm type: s_gras_msg_t */ + /* registered callbacks for each message */ xbt_dynar_t cbl_list; /* elm type: gras_cblist_t */