Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s/onexit/my_onexit
[simgrid.git] / teshsuite / msg / pid / pid.c
index 0fee70ac43e66501b0a294836166a6e3287731e2..f2e200a623397bb5307bbf392dfdec7b050b382f 100644 (file)
@@ -1,10 +1,10 @@
-/* Copyright (c) 2009-2010, 2013-2014. The SimGrid Team.
+/* Copyright (c) 2009-2010, 2013-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "msg/msg.h"
+#include "simgrid/msg.h"
 #include "xbt/sysdep.h"
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
@@ -13,7 +13,7 @@ const char* mailbox = "mailbox";
 #define task_comp_size 1000
 #define task_comm_size 100000
 
-static int onexit(smx_process_exit_status_t status, int *pid){
+static int my_onexit(smx_process_exit_status_t status, int *pid){
   XBT_INFO("Process \"%d\" killed.", *pid);
   return 0;
 }
@@ -21,7 +21,7 @@ static int onexit(smx_process_exit_status_t status, int *pid){
 static int sendpid(int argc, char *argv[])
 {
   int pid = MSG_process_self_PID();
-  MSG_process_on_exit((int_f_pvoid_pvoid_t)onexit, &pid);
+  MSG_process_on_exit((int_f_pvoid_pvoid_t)my_onexit, &pid);
   msg_task_t task = MSG_task_create("pid", task_comp_size, task_comm_size, &pid);
   XBT_INFO("Sending pid of \"%d\".", pid);
   MSG_task_send(task, mailbox);