Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove a couple of dumb sprintf
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Fri, 27 May 2016 12:47:02 +0000 (14:47 +0200)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Fri, 27 May 2016 12:47:02 +0000 (14:47 +0200)
teshsuite/msg/host_on_off/host_on_off.c
teshsuite/msg/host_on_off_processes/host_on_off_processes.c
teshsuite/msg/task_destroy_cancel/task_destroy_cancel.c

index fe7a4fd..fcb42c6 100644 (file)
@@ -13,9 +13,7 @@ static int slave(int argc, char *argv[])
   msg_task_t task = NULL;
   XBT_ATTRIB_UNUSED int res;
   int id = -1;
-  char mailbox[80];
-
-  sprintf(mailbox, "jupi");
+  const char * mailbox = "jupi";
 
   while (1) {
     res = MSG_task_receive(&(task), mailbox);
@@ -41,10 +39,9 @@ static int master(int argc, char *argv[])
   double task_comp_size = 5E7;
   double task_comm_size = 1E6;
 
-  char mailbox[256];
+  const char * mailbox = "jupi";
   msg_task_t task = NULL;
   msg_host_t jupiter = MSG_host_by_name("Jupiter");
-  sprintf(mailbox, "jupi");
 
   task = MSG_task_create("task on", task_comp_size, task_comm_size, NULL);
   XBT_INFO("Sending \"%s\"", task->name);
index 0aa4cbf..86199c8 100644 (file)
@@ -39,8 +39,7 @@ static int process_sleep(int argc, char *argv[])
 static int commTX(int argc, char *argv[])
 {
   msg_task_t task = NULL;
-  char mailbox[80];
-  sprintf(mailbox, "comm");
+  const char * mailbox = "comm";
   XBT_INFO("  Start TX");
   task = MSG_task_create("COMM", 0, 100000000, NULL);
   MSG_task_isend(task, mailbox);
@@ -53,8 +52,7 @@ static int commTX(int argc, char *argv[])
 static int commRX(int argc, char *argv[])
 {
   msg_task_t task = NULL;
-  char mailbox[80];
-  sprintf(mailbox, "comm");
+  const char * mailbox = "comm";
   XBT_INFO("  Start RX");
   msg_error_t error = MSG_task_receive(&(task), mailbox);
   if (error==MSG_OK) {
index 020e777..929ee1a 100644 (file)
@@ -14,11 +14,9 @@ static int master(int argc, char *argv[])
   double task_comm_size = 1E6;
   double timeout = 1;
 
-  char mailbox[256];
+  const char * mailbox = "jupi";
   xbt_ex_t ex;
 
-  sprintf(mailbox, "jupi");
-
   msg_task_t task = MSG_task_create("normal", task_comp_size, task_comm_size, NULL);
   XBT_INFO("Sending task: \"%s\"", task->name);
   MSG_task_send_with_timeout(task, mailbox, timeout);
@@ -83,10 +81,9 @@ static int slave(int argc, char *argv[])
   msg_task_t task;
   XBT_ATTRIB_UNUSED int res;
   int id = -1;
-  char mailbox[80];
+  const char * mailbox = "jupi";
   double start, end;
-  sprintf(mailbox, "jupi");
-
   while (1) {
     task = NULL;
     res = MSG_task_receive(&(task), mailbox);