Logo AND Algorithmique Numérique Distribuée

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