Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more debugging
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 26 May 2009 12:57:20 +0000 (12:57 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 26 May 2009 12:57:20 +0000 (12:57 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6304 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/gras/Msg/gras_msg_exchange.c

index ebc637b..0c0c5ac 100644 (file)
@@ -35,7 +35,6 @@ const char *e_gras_msg_kind_names[e_gras_msg_kind_count]=
 
 void
 gras_msg_wait_ext_(double           timeout,
-
                gras_msgtype_t   msgt_want,
                gras_socket_t    expe_want,
                gras_msg_filter_t filter,
@@ -375,8 +374,8 @@ gras_msg_handle(double timeOut) {
                }
        }
        if (!list) {
-               INFO3("No callback for message '%s' from %s:%d. Queue it for later gras_msg_wait() use.",
-                               msg.type->name,
+               INFO4("No callback for message '%s' (type:%s) from %s:%d. Queue it for later gras_msg_wait() use.",
+                               msg.type->name,e_gras_msg_kind_names[msg.kind],
                                gras_socket_peer_name(msg.expe),gras_socket_peer_port(msg.expe));
                xbt_dynar_push(pd->msg_waitqueue,&msg);
                return; /* FIXME: maybe we should call ourselves again until the end of the timer or a proper msg is got */