Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mingw32 cross-build needs love
[simgrid.git] / examples / gras / ping / ping.c
index 66b4b8a..00e3db2 100644 (file)
@@ -61,7 +61,7 @@ static int server_cb_ping_handler(gras_socket_t  expeditor,
     return 1;
   }
 
-  INFO0("SERVER: >>>>>>>> Answed with PONG(4321) <<<<<<<<");
+  INFO0("SERVER: >>>>>>>> Answered with PONG(4321) <<<<<<<<");
    
   /* 7. Set the endcondition boolean to true (and make sure the server stops after receiving it). */
   globals->endcondition = 1;
@@ -119,7 +119,7 @@ int server (int argc,char *argv[]) {
   
   /* 8. Sleep one second, but only in real life, not in simulation */
   if (!gras_if_RL())
-    gras_os_sleep(1, 0);
+    gras_os_sleep(1);
 
   /* 9. Free the allocated resources, and shut GRAS down */
   gras_socket_close(globals->sock);
@@ -158,7 +158,7 @@ int client(int argc,char *argv[]) {
   INFO2("Launch client (server on %s:%d)",host,port);
    
   /* 3. Wait for the server startup */
-  gras_os_sleep(1,0);
+  gras_os_sleep(1);
    
   /* 4. Create a socket to speak to the server */
   if ((errcode=gras_socket_client(host,port,&toserver))) {
@@ -200,7 +200,7 @@ int client(int argc,char *argv[]) {
   }
 
   /* 9. Keep the user informed of what's going on, again */
-  INFO3("Client: >>>>>>>> Got PONG(%d) got from %s:%d <<<<<<<<", 
+  INFO3("Client: >>>>>>>> Got PONG(%d) from %s:%d <<<<<<<<", 
        pong,
        gras_socket_peer_name(from),gras_socket_peer_port(from));