Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to run sonarqube on travis
[simgrid.git] / src / simix / libsmx.cpp
1 /* libsmx.c - public interface to simix                                       */
2 /* --------                                                                   */
3 /* These functions are the only ones that are visible from the higher levels  */
4 /* (most of them simply add some documentation to the generated simcall body) */
5 /*                                                                            */
6 /* This is somehow the "libc" of SimGrid                                      */
7
8 /* Copyright (c) 2010-2015. The SimGrid Team.
9  * All rights reserved.                                                     */
10
11 /* This program is free software; you can redistribute it and/or modify it
12  * under the terms of the license (GNU LGPL) which comes with this package. */
13
14 #include <cmath>         /* std::isfinite() */
15
16 #include <functional>
17
18 #include "src/mc/mc_replay.h"
19 #include "smx_private.h"
20 #include "src/mc/mc_forward.hpp"
21 #include "xbt/ex.h"
22 #include "mc/mc.h"
23 #include "src/simix/smx_host_private.h"
24
25 #include "src/simix/SynchroComm.hpp"
26
27 #include <simgrid/simix.hpp>
28
29 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix);
30
31 #include "popping_bodies.cpp"
32
33 void simcall_call(smx_process_t process)
34 {
35   if (process != simix_global->maestro_process) {
36     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", process->name.c_str(),
37               SIMIX_simcall_name(process->simcall.call), (int)process->simcall.call);
38     SIMIX_process_yield(process);
39   } else {
40     SIMIX_simcall_handle(&process->simcall, 0);
41   }
42 }
43
44 // ***** AS simcalls
45
46 /**
47  * \ingroup simix_host_management
48  * \brief Returns a dict of the properties assigned to a router or AS.
49  *
50  * \param name The name of the router or AS
51  * \return The properties
52  */
53 xbt_dict_t simcall_asr_get_properties(const char *name)
54 {
55   return simcall_BODY_asr_get_properties(name);
56 }
57
58 /**
59  * \ingroup simix_process_management
60  * \brief Creates a synchro that executes some computation of an host.
61  *
62  * This function creates a SURF action and allocates the data necessary
63  * to create the SIMIX synchro. It can raise a host_error exception if the host crashed.
64  *
65  * \param name Name of the execution synchro to create
66  * \param flops_amount amount Computation amount (in flops)
67  * \param priority computation priority
68  * \param bound
69  * \param affinity_mask
70  * \return A new SIMIX execution synchronization
71  */
72 smx_synchro_t simcall_execution_start(const char *name,
73                                     double flops_amount,
74                                     double priority, double bound, unsigned long affinity_mask)
75 {
76   /* checking for infinite values */
77   xbt_assert(std::isfinite(flops_amount), "flops_amount is not finite!");
78   xbt_assert(std::isfinite(priority), "priority is not finite!");
79
80   return simcall_BODY_execution_start(name, flops_amount, priority, bound, affinity_mask);
81 }
82
83 /**
84  * \ingroup simix_process_management
85  * \brief Creates a synchro that may involve parallel computation on
86  * several hosts and communication between them.
87  *
88  * \param name Name of the execution synchro to create
89  * \param host_nb Number of hosts where the synchro will be executed
90  * \param host_list Array (of size host_nb) of hosts where the synchro will be executed
91  * \param flops_amount Array (of size host_nb) of computation amount of hosts (in bytes)
92  * \param bytes_amount Array (of size host_nb * host_nb) representing the communication
93  * amount between each pair of hosts
94  * \param amount the SURF action amount
95  * \param rate the SURF action rate
96  * \return A new SIMIX execution synchronization
97  */
98 smx_synchro_t simcall_execution_parallel_start(const char *name,
99                                          int host_nb,
100                                          sg_host_t *host_list,
101                                          double *flops_amount,
102                                          double *bytes_amount,
103                                          double amount,
104                                          double rate)
105 {
106   int i,j;
107   /* checking for infinite values */
108   for (i = 0 ; i < host_nb ; ++i) {
109     xbt_assert(std::isfinite(flops_amount[i]), "flops_amount[%d] is not finite!", i);
110     if (bytes_amount != NULL) {
111       for (j = 0 ; j < host_nb ; ++j) {
112         xbt_assert(std::isfinite(bytes_amount[i + host_nb * j]),
113                    "bytes_amount[%d+%d*%d] is not finite!", i, host_nb, j);
114       }
115     }
116   }
117
118   xbt_assert(std::isfinite(amount), "amount is not finite!");
119   xbt_assert(std::isfinite(rate), "rate is not finite!");
120
121   return simcall_BODY_execution_parallel_start(name, host_nb, host_list,
122                                             flops_amount,
123                                             bytes_amount,
124                                             amount, rate);
125
126 }
127
128 /**
129  * \ingroup simix_process_management
130  * \brief Cancels an execution synchro.
131  *
132  * This functions stops the execution. It calls a surf function.
133  * \param execution The execution synchro to cancel
134  */
135 void simcall_execution_cancel(smx_synchro_t execution)
136 {
137   simcall_BODY_execution_cancel(execution);
138 }
139
140 /**
141  * \ingroup simix_process_management
142  * \brief Changes the priority of an execution synchro.
143  *
144  * This functions changes the priority only. It calls a surf function.
145  * \param execution The execution synchro
146  * \param priority The new priority
147  */
148 void simcall_execution_set_priority(smx_synchro_t execution, double priority)
149 {
150   /* checking for infinite values */
151   xbt_assert(std::isfinite(priority), "priority is not finite!");
152
153   simcall_BODY_execution_set_priority(execution, priority);
154 }
155
156 /**
157  * \ingroup simix_process_management
158  * \brief Changes the capping (the maximum CPU utilization) of an execution synchro.
159  *
160  * This functions changes the capping only. It calls a surf function.
161  * \param execution The execution synchro
162  * \param bound The new bound
163  */
164 void simcall_execution_set_bound(smx_synchro_t execution, double bound)
165 {
166   simcall_BODY_execution_set_bound(execution, bound);
167 }
168
169 /**
170  * \ingroup simix_process_management
171  * \brief Changes the CPU affinity of an execution synchro.
172  *
173  * This functions changes the CPU affinity of an execution synchro. See taskset(1) on Linux.
174  * \param execution The execution synchro
175  * \param host Host
176  * \param mask Affinity mask
177  */
178 void simcall_execution_set_affinity(smx_synchro_t execution, sg_host_t host, unsigned long mask)
179 {
180   simcall_BODY_execution_set_affinity(execution, host, mask);
181 }
182
183 /**
184  * \ingroup simix_host_management
185  * \brief Waits for the completion of an execution synchro and destroy it.
186  *
187  * \param execution The execution synchro
188  */
189 e_smx_state_t simcall_execution_wait(smx_synchro_t execution)
190 {
191   return (e_smx_state_t) simcall_BODY_execution_wait(execution);
192 }
193
194
195 /**
196  * \ingroup simix_vm_management
197  * \brief Create a VM on the given physical host.
198  *
199  * \param name VM name
200  * \param host Physical host
201  *
202  * \return The host object of the VM
203  */
204 void* simcall_vm_create(const char *name, sg_host_t phys_host)
205 {
206   return simgrid::simix::kernel(std::bind(SIMIX_vm_create, name, phys_host));
207 }
208
209 /**
210  * \ingroup simix_vm_management
211  * \brief Start the given VM to the given physical host
212  *
213  * \param vm VM
214  */
215 void simcall_vm_start(sg_host_t vm)
216 {
217   return simgrid::simix::kernel(std::bind(SIMIX_vm_start, vm));
218 }
219
220 /**
221  * \ingroup simix_vm_management
222  * \brief Get the state of the given VM
223  *
224  * \param vm VM
225  * \return The state of the VM
226  */
227 int simcall_vm_get_state(sg_host_t vm)
228 {
229   return simgrid::simix::kernel(std::bind(SIMIX_vm_get_state, vm));
230 }
231
232 /**
233  * \ingroup simix_vm_management
234  * \brief Get the name of the physical host on which the given VM runs.
235  *
236  * \param vm VM
237  * \return The name of the physical host
238  */
239 void *simcall_vm_get_pm(sg_host_t vm)
240 {
241   return simgrid::simix::kernel(std::bind(SIMIX_vm_get_pm, vm));
242 }
243
244 void simcall_vm_set_bound(sg_host_t vm, double bound)
245 {
246   simgrid::simix::kernel(std::bind(SIMIX_vm_set_bound, vm, bound));
247 }
248
249 void simcall_vm_set_affinity(sg_host_t vm, sg_host_t pm, unsigned long mask)
250 {
251   simgrid::simix::kernel(std::bind(SIMIX_vm_set_affinity, vm, pm, mask));
252 }
253
254 /**
255  * \ingroup simix_vm_management
256  * \brief Migrate the given VM to the given physical host
257  *
258  * \param vm VM
259  * \param host Destination physical host
260  */
261 void simcall_vm_migrate(sg_host_t vm, sg_host_t host)
262 {
263   return simgrid::simix::kernel(std::bind(SIMIX_vm_migrate, vm, host));
264 }
265
266 /**
267  * \ingroup simix_vm_management
268  * \brief Suspend the given VM
269  *
270  * \param vm VM
271  */
272 void simcall_vm_suspend(sg_host_t vm)
273 {
274   simcall_BODY_vm_suspend(vm);
275 }
276
277 /**
278  * \ingroup simix_vm_management
279  * \brief Resume the given VM
280  *
281  * \param vm VM
282  */
283 void simcall_vm_resume(sg_host_t vm)
284 {
285   simcall_BODY_vm_resume(vm);
286 }
287
288 /**
289  * \ingroup simix_vm_management
290  * \brief Save the given VM
291  *
292  * \param vm VM
293  */
294 void simcall_vm_save(sg_host_t vm)
295 {
296   simcall_BODY_vm_save(vm);
297 }
298
299 /**
300  * \ingroup simix_vm_management
301  * \brief Restore the given VM
302  *
303  * \param vm VM
304  */
305 void simcall_vm_restore(sg_host_t vm)
306 {
307   simcall_BODY_vm_restore(vm);
308 }
309
310 /**
311  * \ingroup simix_vm_management
312  * \brief Shutdown the given VM
313  *
314  * \param vm VM
315  */
316 void simcall_vm_shutdown(sg_host_t vm)
317 {
318   simcall_BODY_vm_shutdown(vm);
319 }
320
321 /**
322  * \ingroup simix_vm_management
323  * \brief Destroy the given VM
324  *
325  * \param vm VM
326  */
327 void simcall_vm_destroy(sg_host_t vm)
328 {
329   simgrid::simix::kernel(std::bind(SIMIX_vm_destroy, vm));
330 }
331
332 /**
333  * \ingroup simix_vm_management
334  * \brief Encompassing simcall to prevent the removal of the src or the dst node at the end of a VM migration
335  *  The simcall actually invokes the following calls: 
336  *     simcall_vm_set_affinity(vm, src_pm, 0); 
337  *     simcall_vm_migrate(vm, dst_pm); 
338  *     simcall_vm_resume(vm);
339  *
340  * It is called at the end of the migration_rx_fun function from msg/msg_vm.c
341  *
342  * \param vm VM to migrate
343  * \param src_pm  Source physical host
344  * \param dst_pmt Destination physical host
345  */
346 void simcall_vm_migratefrom_resumeto(sg_host_t vm, sg_host_t src_pm, sg_host_t dst_pm)
347 {
348   simgrid::simix::kernel(std::bind(
349     SIMIX_vm_migratefrom_resumeto, vm, src_pm, dst_pm));
350 }
351
352 /**
353  * \ingroup simix_process_management
354  * \brief Creates and runs a new SIMIX process.
355  *
356  * The structure and the corresponding thread are created and put in the list of ready processes.
357  *
358  * \param name a name for the process. It is for user-level information and can be NULL.
359  * \param code the main function of the process
360  * \param data a pointer to any data one may want to attach to the new object. It is for user-level information and can be NULL.
361  * It can be retrieved with the function \ref simcall_process_get_data.
362  * \param hostname name of the host where the new agent is executed.
363  * \param kill_time time when the process is killed
364  * \param argc first argument passed to \a code
365  * \param argv second argument passed to \a code
366  * \param properties the properties of the process
367  * \param auto_restart either it is autorestarting or not.
368  */
369 smx_process_t simcall_process_create(const char *name,
370                               xbt_main_func_t code,
371                               void *data,
372                               const char *hostname,
373                               double kill_time,
374                               int argc, char **argv,
375                               xbt_dict_t properties,
376                               int auto_restart)
377 {
378   if (name == nullptr)
379     name = "";
380   auto wrapped_code = simgrid::simix::wrap_main(code, argc, argv);
381   for (int i = 0; i != argc; ++i)
382     xbt_free(argv[i]);
383   xbt_free(argv);
384   smx_process_t res = simcall_process_create(name,
385     std::move(wrapped_code),
386     data, hostname, kill_time, properties, auto_restart);
387   return res;
388 }
389
390 /**
391  * \ingroup simix_process_management
392  * \brief Kills a SIMIX process.
393  *
394  * This function simply kills a  process.
395  *
396  * \param process poor victim
397  */
398 void simcall_process_kill(smx_process_t process)
399 {
400   simcall_BODY_process_kill(process);
401 }
402
403 /**
404  * \ingroup simix_process_management
405  * \brief Kills all SIMIX processes.
406  */
407 void simcall_process_killall(int reset_pid)
408 {
409   simcall_BODY_process_killall(reset_pid);
410 }
411
412 /**
413  * \ingroup simix_process_management
414  * \brief Cleans up a SIMIX process.
415  * \param process poor victim (must have already been killed)
416  */
417 void simcall_process_cleanup(smx_process_t process)
418 {
419   simcall_BODY_process_cleanup(process);
420 }
421
422 /**
423  * \ingroup simix_process_management
424  * \brief Migrates an agent to another location.
425  *
426  * This function changes the value of the host on which \a process is running.
427  *
428  * \param process the process to migrate
429  * \param dest name of the new host
430  */
431 void simcall_process_set_host(smx_process_t process, sg_host_t dest)
432 {
433   simcall_BODY_process_set_host(process, dest);
434 }
435
436 void simcall_process_join(smx_process_t process, double timeout)
437 {
438   simcall_BODY_process_join(process, timeout);
439 }
440
441 /**
442  * \ingroup simix_process_management
443  * \brief Suspends a process.
444  *
445  * This function suspends the process by suspending the synchro
446  * it was waiting for completion.
447  *
448  * \param process a SIMIX process
449  */
450 void simcall_process_suspend(smx_process_t process)
451 {
452   xbt_assert(process, "Invalid parameters");
453
454   simcall_BODY_process_suspend(process);
455 }
456
457 /**
458  * \ingroup simix_process_management
459  * \brief Resumes a suspended process.
460  *
461  * This function resumes a suspended process by resuming the synchro
462  * it was waiting for completion.
463  *
464  * \param process a SIMIX process
465  */
466 void simcall_process_resume(smx_process_t process)
467 {
468   simcall_BODY_process_resume(process);
469 }
470
471 /**
472  * \ingroup simix_process_management
473  * \brief Returns the amount of SIMIX processes in the system
474  *
475  * Maestro internal process is not counted, only user code processes are
476  */
477 int simcall_process_count(void)
478 {
479   return simgrid::simix::kernel(SIMIX_process_count);
480 }
481
482 /**
483  * \ingroup simix_process_management
484  * \brief Return the PID of a #smx_process_t.
485  * \param process a SIMIX process
486  * \return the PID of this process
487  */
488 int simcall_process_get_PID(smx_process_t process)
489 {
490   return SIMIX_process_get_PID(process);
491 }
492
493 /**
494  * \ingroup simix_process_management
495  * \brief Return the parent PID of a #smx_process_t.
496  * \param process a SIMIX process
497  * \return the PID of this process parenrt
498  */
499 int simcall_process_get_PPID(smx_process_t process)
500 {
501   return SIMIX_process_get_PPID(process);
502 }
503
504 /**
505  * \ingroup simix_process_management
506  * \brief Return the user data of a #smx_process_t.
507  * \param process a SIMIX process
508  * \return the user data of this process
509  */
510 void* simcall_process_get_data(smx_process_t process)
511 {
512   return SIMIX_process_get_data(process);
513 }
514
515 /**
516  * \ingroup simix_process_management
517  * \brief Set the user data of a #smx_process_t.
518  *
519  * This functions sets the user data associated to \a process.
520  * \param process SIMIX process
521  * \param data User data
522  */
523 void simcall_process_set_data(smx_process_t process, void *data)
524 {
525   simgrid::simix::kernel(std::bind(SIMIX_process_set_data, process, data));
526 }
527
528 /**
529  * \ingroup simix_process_management
530  * \brief Set the kill time of a process.
531  */
532 void simcall_process_set_kill_time(smx_process_t process, double kill_time)
533 {
534
535   if (kill_time <= SIMIX_get_clock() || simix_global->kill_process_function == nullptr)
536     return;
537   XBT_DEBUG("Set kill time %f for process %s(%s)",
538     kill_time, process->name.c_str(), sg_host_get_name(process->host));
539   process->kill_timer = SIMIX_timer_set(kill_time, [=] {
540     simix_global->kill_process_function(process);
541     process->kill_timer=NULL;
542   });
543 }
544 /**
545  * \ingroup simix_process_management
546  * \brief Get the kill time of a process (or 0 if unset).
547  */
548 double simcall_process_get_kill_time(smx_process_t process) {
549   return SIMIX_timer_get_date(process->kill_timer);
550 }
551
552 /**
553  * \ingroup simix_process_management
554  * \brief Return the location on which an agent is running.
555  *
556  * This functions returns the sg_host_t corresponding to the location on which
557  * \a process is running.
558  * \param process SIMIX process
559  * \return SIMIX host
560  */
561 sg_host_t simcall_process_get_host(smx_process_t process)
562 {
563   return SIMIX_process_get_host(process);
564 }
565
566 /**
567  * \ingroup simix_process_management
568  * \brief Return the name of an agent.
569  *
570  * This functions checks whether \a process is a valid pointer or not and return its name.
571  * \param process SIMIX process
572  * \return The process name
573  */
574 const char* simcall_process_get_name(smx_process_t process)
575 {
576   return SIMIX_process_get_name(process);
577 }
578
579 /**
580  * \ingroup simix_process_management
581  * \brief Returns true if the process is suspended .
582  *
583  * This checks whether a process is suspended or not by inspecting the task on which it was waiting for the completion.
584  * \param process SIMIX process
585  * \return 1, if the process is suspended, else 0.
586  */
587 int simcall_process_is_suspended(smx_process_t process)
588 {
589   return simcall_BODY_process_is_suspended(process);
590 }
591
592 /**
593  * \ingroup simix_process_management
594  * \brief Return the properties
595  *
596  * This functions returns the properties associated with this process
597  */
598 xbt_dict_t simcall_process_get_properties(smx_process_t process)
599 {
600   return SIMIX_process_get_properties(process);
601 }
602 /**
603  * \ingroup simix_process_management
604  * \brief Add an on_exit function
605  * Add an on_exit function which will be executed when the process exits/is killed.
606  */
607 XBT_PUBLIC(void) simcall_process_on_exit(smx_process_t process, int_f_pvoid_pvoid_t fun, void *data)
608 {
609   simcall_BODY_process_on_exit(process, fun, data);
610 }
611 /**
612  * \ingroup simix_process_management
613  * \brief Sets the process to be auto-restarted or not by SIMIX when its host comes back up.
614  * Will restart the process when the host comes back up if auto_restart is set to 1.
615  */
616
617 XBT_PUBLIC(void) simcall_process_auto_restart_set(smx_process_t process, int auto_restart)
618 {
619   simcall_BODY_process_auto_restart_set(process, auto_restart);
620 }
621
622 /**
623  * \ingroup simix_process_management
624  * \brief Restarts the process, killing it and starting it again from scratch.
625  */
626 XBT_PUBLIC(smx_process_t) simcall_process_restart(smx_process_t process)
627 {
628   return (smx_process_t) simcall_BODY_process_restart(process);
629 }
630 /**
631  * \ingroup simix_process_management
632  * \brief Creates a new sleep SIMIX synchro.
633  *
634  * This function creates a SURF action and allocates the data necessary
635  * to create the SIMIX synchro. It can raise a host_error exception if the
636  * host crashed. The default SIMIX name of the synchro is "sleep".
637  *
638  *   \param duration Time duration of the sleep.
639  *   \return A result telling whether the sleep was successful
640  */
641 e_smx_state_t simcall_process_sleep(double duration)
642 {
643   /* checking for infinite values */
644   xbt_assert(std::isfinite(duration), "duration is not finite!");
645   return (e_smx_state_t) simcall_BODY_process_sleep(duration);
646 }
647
648 /**
649  *  \ingroup simix_mbox_management
650  *  \brief Creates a new rendez-vous point
651  *  \param name The name of the rendez-vous point
652  *  \return The created rendez-vous point
653  */
654 smx_mailbox_t simcall_mbox_create(const char *name)
655 {
656   return simcall_BODY_mbox_create(name);
657 }
658
659 /**
660  *  \ingroup simix_mbox_management
661  *  \brief Returns a rendez-vous point knowing its name
662  */
663 smx_mailbox_t simcall_mbox_get_by_name(const char *name)
664 {
665   /* FIXME: this is a horrible loss of performance, so we hack it out by
666    * skipping the simcall (for now). It works in parallel, it won't work on
667    * distributed but probably we will change MSG for that. */
668
669   return SIMIX_mbox_get_by_name(name);
670 }
671
672 /**
673  *  \ingroup simix_mbox_management
674  *  \brief returns the communication at the head of the rendez-vous
675  *  \param mbox The rendez-vous point
676  *  \return The communication or NULL if empty
677  */
678 smx_synchro_t simcall_mbox_front(smx_mailbox_t mbox)
679 {
680
681   return mbox->comm_queue->empty()? nullptr:mbox->comm_queue->front();
682 }
683
684 void simcall_mbox_set_receiver(smx_mailbox_t mbox, smx_process_t process)
685 {
686   simcall_BODY_mbox_set_receiver(mbox, process);
687 }
688
689 /**
690  * \ingroup simix_comm_management
691  */
692 void simcall_comm_send(smx_process_t sender, smx_mailbox_t mbox, double task_size, double rate,
693                          void *src_buff, size_t src_buff_size,
694                          int (*match_fun)(void *, void *, smx_synchro_t),
695                          void (*copy_data_fun)(smx_synchro_t, void*, size_t), void *data,
696                          double timeout)
697 {
698   /* checking for infinite values */
699   xbt_assert(std::isfinite(task_size), "task_size is not finite!");
700   xbt_assert(std::isfinite(rate), "rate is not finite!");
701   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
702
703   xbt_assert(mbox, "No rendez-vous point defined for send");
704
705   if (MC_is_active() || MC_record_replay_is_active()) {
706     /* the model-checker wants two separate simcalls */
707     smx_synchro_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */
708     comm = simcall_comm_isend(sender, mbox, task_size, rate,
709         src_buff, src_buff_size, match_fun, NULL, copy_data_fun, data, 0);
710     simcall_comm_wait(comm, timeout);
711     comm = NULL;
712   }
713   else {
714     simcall_BODY_comm_send(sender, mbox, task_size, rate, src_buff, src_buff_size,
715                          match_fun, copy_data_fun, data, timeout);
716   }
717 }
718
719 /**
720  * \ingroup simix_comm_management
721  */
722 smx_synchro_t simcall_comm_isend(smx_process_t sender, smx_mailbox_t mbox, double task_size, double rate,
723                               void *src_buff, size_t src_buff_size,
724                               int (*match_fun)(void *, void *, smx_synchro_t),
725                               void (*clean_fun)(void *),
726                               void (*copy_data_fun)(smx_synchro_t, void*, size_t),
727                               void *data,
728                               int detached)
729 {
730   /* checking for infinite values */
731   xbt_assert(std::isfinite(task_size), "task_size is not finite!");
732   xbt_assert(std::isfinite(rate), "rate is not finite!");
733
734   xbt_assert(mbox, "No rendez-vous point defined for isend");
735
736   return simcall_BODY_comm_isend(sender, mbox, task_size, rate, src_buff,
737                                  src_buff_size, match_fun,
738                                  clean_fun, copy_data_fun, data, detached);
739 }
740
741 /**
742  * \ingroup simix_comm_management
743  */
744 void simcall_comm_recv(smx_process_t receiver, smx_mailbox_t mbox, void *dst_buff, size_t * dst_buff_size,
745                        int (*match_fun)(void *, void *, smx_synchro_t),
746                        void (*copy_data_fun)(smx_synchro_t, void*, size_t),
747                        void *data, double timeout, double rate)
748 {
749   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
750   xbt_assert(mbox, "No rendez-vous point defined for recv");
751
752   if (MC_is_active() || MC_record_replay_is_active()) {
753     /* the model-checker wants two separate simcalls */
754     smx_synchro_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */
755     comm = simcall_comm_irecv(receiver, mbox, dst_buff, dst_buff_size,
756                               match_fun, copy_data_fun, data, rate);
757     simcall_comm_wait(comm, timeout);
758     comm = NULL;
759   }
760   else {
761     simcall_BODY_comm_recv(receiver, mbox, dst_buff, dst_buff_size,
762                            match_fun, copy_data_fun, data, timeout, rate);
763   }
764 }
765 /**
766  * \ingroup simix_comm_management
767  */
768 smx_synchro_t simcall_comm_irecv(smx_process_t receiver, smx_mailbox_t mbox, void *dst_buff, size_t *dst_buff_size,
769                                 int (*match_fun)(void *, void *, smx_synchro_t),
770                                 void (*copy_data_fun)(smx_synchro_t, void*, size_t),
771                                 void *data, double rate)
772 {
773   xbt_assert(mbox, "No rendez-vous point defined for irecv");
774
775   return simcall_BODY_comm_irecv(receiver, mbox, dst_buff, dst_buff_size,
776                                  match_fun, copy_data_fun, data, rate);
777 }
778
779 /**
780  * \ingroup simix_comm_management
781  */
782 smx_synchro_t simcall_comm_iprobe(smx_mailbox_t mbox, int type, int src, int tag,
783                                 int (*match_fun)(void *, void *, smx_synchro_t), void *data)
784 {
785   xbt_assert(mbox, "No rendez-vous point defined for iprobe");
786
787   return simcall_BODY_comm_iprobe(mbox, type, src, tag, match_fun, data);
788 }
789
790 /**
791  * \ingroup simix_comm_management
792  */
793 void simcall_comm_cancel(smx_synchro_t synchro)
794 {
795   simgrid::simix::kernel([synchro]{
796     simgrid::simix::Comm *comm = static_cast<simgrid::simix::Comm*>(synchro);
797     comm->cancel();
798   });
799 }
800
801 /**
802  * \ingroup simix_comm_management
803  */
804 unsigned int simcall_comm_waitany(xbt_dynar_t comms)
805 {
806   return simcall_BODY_comm_waitany(comms);
807 }
808
809 /**
810  * \ingroup simix_comm_management
811  */
812 int simcall_comm_testany(xbt_dynar_t comms)
813 {
814   if (xbt_dynar_is_empty(comms))
815     return -1;
816   return simcall_BODY_comm_testany(comms);
817 }
818
819 /**
820  * \ingroup simix_comm_management
821  */
822 void simcall_comm_wait(smx_synchro_t comm, double timeout)
823 {
824   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
825   simcall_BODY_comm_wait(comm, timeout);
826 }
827
828 /**
829  * \brief Set the category of an synchro.
830  *
831  * This functions changes the category only. It calls a surf function.
832  * \param execution The execution synchro
833  * \param category The tracing category
834  */
835 void simcall_set_category(smx_synchro_t synchro, const char *category)
836 {
837   if (category == NULL) {
838     return;
839   }
840   simcall_BODY_set_category(synchro, category);
841 }
842
843 /**
844  * \ingroup simix_comm_management
845  *
846  */
847 int simcall_comm_test(smx_synchro_t comm)
848 {
849   return simcall_BODY_comm_test(comm);
850 }
851
852 /**
853  * \ingroup simix_synchro_management
854  *
855  */
856 smx_mutex_t simcall_mutex_init(void)
857 {
858   if(!simix_global) {
859     fprintf(stderr,"You must run MSG_init before using MSG\n"); // We can't use xbt_die since we may get there before the initialization
860     xbt_abort();
861   }
862   return simcall_BODY_mutex_init();
863 }
864
865 /**
866  * \ingroup simix_synchro_management
867  *
868  */
869 void simcall_mutex_lock(smx_mutex_t mutex)
870 {
871   simcall_BODY_mutex_lock(mutex);
872 }
873
874 /**
875  * \ingroup simix_synchro_management
876  *
877  */
878 int simcall_mutex_trylock(smx_mutex_t mutex)
879 {
880   return simcall_BODY_mutex_trylock(mutex);
881 }
882
883 /**
884  * \ingroup simix_synchro_management
885  *
886  */
887 void simcall_mutex_unlock(smx_mutex_t mutex)
888 {
889   simcall_BODY_mutex_unlock(mutex);
890 }
891
892 /**
893  * \ingroup simix_synchro_management
894  *
895  */
896 smx_cond_t simcall_cond_init(void)
897 {
898   return simcall_BODY_cond_init();
899 }
900
901 /**
902  * \ingroup simix_synchro_management
903  *
904  */
905 void simcall_cond_signal(smx_cond_t cond)
906 {
907   simcall_BODY_cond_signal(cond);
908 }
909
910 /**
911  * \ingroup simix_synchro_management
912  *
913  */
914 void simcall_cond_wait(smx_cond_t cond, smx_mutex_t mutex)
915 {
916   simcall_BODY_cond_wait(cond, mutex);
917 }
918
919 /**
920  * \ingroup simix_synchro_management
921  *
922  */
923 void simcall_cond_wait_timeout(smx_cond_t cond,
924                                  smx_mutex_t mutex,
925                                  double timeout)
926 {
927   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
928   simcall_BODY_cond_wait_timeout(cond, mutex, timeout);
929 }
930
931 /**
932  * \ingroup simix_synchro_management
933  *
934  */
935 void simcall_cond_broadcast(smx_cond_t cond)
936 {
937   simcall_BODY_cond_broadcast(cond);
938 }
939
940 /**
941  * \ingroup simix_synchro_management
942  *
943  */
944 smx_sem_t simcall_sem_init(int capacity)
945 {
946   return simcall_BODY_sem_init(capacity);
947 }
948
949 /**
950  * \ingroup simix_synchro_management
951  *
952  */
953 void simcall_sem_release(smx_sem_t sem)
954 {
955   simcall_BODY_sem_release(sem);
956 }
957
958 /**
959  * \ingroup simix_synchro_management
960  *
961  */
962 int simcall_sem_would_block(smx_sem_t sem)
963 {
964   return simcall_BODY_sem_would_block(sem);
965 }
966
967 /**
968  * \ingroup simix_synchro_management
969  *
970  */
971 void simcall_sem_acquire(smx_sem_t sem)
972 {
973   simcall_BODY_sem_acquire(sem);
974 }
975
976 /**
977  * \ingroup simix_synchro_management
978  *
979  */
980 void simcall_sem_acquire_timeout(smx_sem_t sem, double timeout)
981 {
982   xbt_assert(std::isfinite(timeout), "timeout is not finite!");
983   simcall_BODY_sem_acquire_timeout(sem, timeout);
984 }
985
986 /**
987  * \ingroup simix_synchro_management
988  *
989  */
990 int simcall_sem_get_capacity(smx_sem_t sem)
991 {
992   return simcall_BODY_sem_get_capacity(sem);
993 }
994
995 /**
996  * \ingroup simix_file_management
997  *
998  */
999 sg_size_t simcall_file_read(smx_file_t fd, sg_size_t size, sg_host_t host)
1000 {
1001   return simcall_BODY_file_read(fd, size, host);
1002 }
1003
1004 /**
1005  * \ingroup simix_file_management
1006  *
1007  */
1008 sg_size_t simcall_file_write(smx_file_t fd, sg_size_t size, sg_host_t host)
1009 {
1010   return simcall_BODY_file_write(fd, size, host);
1011 }
1012
1013 /**
1014  * \ingroup simix_file_management
1015  * \brief
1016  */
1017 smx_file_t simcall_file_open(const char* fullpath, sg_host_t host)
1018 {
1019   return simcall_BODY_file_open(fullpath, host);
1020 }
1021
1022 /**
1023  * \ingroup simix_file_management
1024  *
1025  */
1026 int simcall_file_close(smx_file_t fd, sg_host_t host)
1027 {
1028   return simcall_BODY_file_close(fd, host);
1029 }
1030
1031 /**
1032  * \ingroup simix_file_management
1033  *
1034  */
1035 int simcall_file_unlink(smx_file_t fd, sg_host_t host)
1036 {
1037   return simcall_BODY_file_unlink(fd, host);
1038 }
1039
1040 /**
1041  * \ingroup simix_file_management
1042  *
1043  */
1044 sg_size_t simcall_file_get_size(smx_file_t fd){
1045   return simcall_BODY_file_get_size(fd);
1046 }
1047
1048 /**
1049  * \ingroup simix_file_management
1050  *
1051  */
1052 sg_size_t simcall_file_tell(smx_file_t fd){
1053   return simcall_BODY_file_tell(fd);
1054 }
1055
1056 /**
1057  * \ingroup simix_file_management
1058  *
1059  */
1060 xbt_dynar_t simcall_file_get_info(smx_file_t fd)
1061 {
1062   return simcall_BODY_file_get_info(fd);
1063 }
1064
1065 /**
1066  * \ingroup simix_file_management
1067  *
1068  */
1069 int simcall_file_seek(smx_file_t fd, sg_offset_t offset, int origin){
1070   return simcall_BODY_file_seek(fd, offset, origin);
1071 }
1072
1073 /**
1074  * \ingroup simix_file_management
1075  * \brief Move a file to another location on the *same mount point*.
1076  *
1077  */
1078 int simcall_file_move(smx_file_t fd, const char* fullpath)
1079 {
1080   return simcall_BODY_file_move(fd, fullpath);
1081 }
1082
1083 /**
1084  * \ingroup simix_storage_management
1085  * \brief Returns the free space size on a given storage element.
1086  * \param storage a storage
1087  * \return Return the free space size on a given storage element (as sg_size_t)
1088  */
1089 sg_size_t simcall_storage_get_free_size (smx_storage_t storage){
1090   return simcall_BODY_storage_get_free_size(storage);
1091 }
1092
1093 /**
1094  * \ingroup simix_storage_management
1095  * \brief Returns the used space size on a given storage element.
1096  * \param storage a storage
1097  * \return Return the used space size on a given storage element (as sg_size_t)
1098  */
1099 sg_size_t simcall_storage_get_used_size (smx_storage_t storage){
1100   return simcall_BODY_storage_get_used_size(storage);
1101 }
1102
1103 /**
1104  * \ingroup simix_storage_management
1105  * \brief Returns a dict of the properties assigned to a storage element.
1106  *
1107  * \param storage A storage element
1108  * \return The properties of this storage element
1109  */
1110 xbt_dict_t simcall_storage_get_properties(smx_storage_t storage)
1111 {
1112   return simcall_BODY_storage_get_properties(storage);
1113 }
1114
1115 /**
1116  * \ingroup simix_storage_management
1117  * \brief Returns a dict containing the content of a storage element.
1118  *
1119  * \param storage A storage element
1120  * \return The content of this storage element as a dict (full path file => size)
1121  */
1122 xbt_dict_t simcall_storage_get_content(smx_storage_t storage)
1123 {
1124   return simcall_BODY_storage_get_content(storage);
1125 }
1126
1127 void simcall_run_kernel(std::function<void()> const& code)
1128 {
1129   return simcall_BODY_run_kernel((void*) &code);
1130 }
1131
1132 int simcall_mc_random(int min, int max) {
1133   return simcall_BODY_mc_random(min, max);
1134 }
1135
1136 /* ************************************************************************** */
1137
1138 /** @brief returns a printable string representing a simcall */
1139 const char *SIMIX_simcall_name(e_smx_simcall_t kind) {
1140   return simcall_names[kind];
1141 }