Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
replace msg_io by a C sg_* interface to S4U
[simgrid.git] / include / simgrid / msg.h
1 /* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef MSG_H
7 #define MSG_H
8
9 #include "simgrid/forward.h"
10 #include "simgrid/host.h"
11 #include "simgrid/plugins/live_migration.h"
12
13 #include "xbt/base.h"
14 #include "xbt/dict.h"
15 #include "xbt/dynar.h"
16
17 #ifdef __cplusplus
18 #include "simgrid/simix.h"
19 #include <map>
20 namespace simgrid {
21 namespace msg {
22 class Comm;
23 }
24 }
25 typedef simgrid::msg::Comm sg_msg_Comm;
26 #else
27 typedef struct msg_Comm sg_msg_Comm;
28 #endif
29
30 SG_BEGIN_DECL()
31
32 /* *************************** Network Zones ******************************** */
33 #define msg_as_t msg_netzone_t /* portability macro */
34 typedef s4u_NetZone* msg_netzone_t;
35
36 /* ******************************** Host ************************************ */
37
38 /** @brief Host datatype.
39     @ingroup m_host_management
40
41     A <em>location</em> (or <em>host</em>) is any possible place where
42     a process may run. Thus it is represented as a <em>physical
43     resource with computing capabilities</em>, some <em>mailboxes</em>
44     to enable running process to communicate with remote ones, and
45     some <em>private data</em> that can be only accessed by local
46     process.
47  */
48 typedef sg_host_t msg_host_t;
49
50
51 XBT_PUBLIC_DATA(int) sg_storage_max_file_descriptors;
52 /* ******************************** Task ************************************ */
53
54 typedef struct s_simdata_task_t* simdata_task_t;
55
56 typedef struct msg_task {
57   char *name;                   /**< @brief task name if any */
58   simdata_task_t simdata;       /**< @brief simulator data */
59   void *data;                   /**< @brief user data */
60   long long int counter;        /* task unique identifier for instrumentation */
61   char *category;               /* task category for instrumentation */
62 } s_msg_task_t;
63
64 /** @brief Task datatype.
65     @ingroup m_task_management
66
67     A <em>task</em> may then be defined by a <em>computing
68     amount</em>, a <em>message size</em> and some <em>private
69     data</em>.
70  */
71 typedef struct msg_task *msg_task_t;
72
73 /* ******************************** VM ************************************* */
74 typedef sg_vm_t msg_vm_t;
75
76 /* ******************************** File ************************************ */
77 typedef sg_file_t msg_file_t;
78
79 /* ******************************** Storage ************************************ */
80
81 /** @brief Storage datatype.
82  *  @ingroup msg_storage_management
83  *
84  *  You should consider this as an opaque object.
85  */
86 typedef sg_storage_t msg_storage_t;
87
88 /**
89  * \brief @brief Communication action.
90  * \ingroup msg_task_usage
91  *
92  * Object representing an ongoing communication between processes. Such beast is usually obtained by using #MSG_task_isend, #MSG_task_irecv or friends.
93  */
94 typedef sg_msg_Comm* msg_comm_t;
95
96 /** \brief Default value for an uninitialized #msg_task_t.
97     \ingroup m_task_management
98 */
99 #define MSG_TASK_UNINITIALIZED NULL
100
101 /* ****************************** Process *********************************** */
102
103 /** @brief Process datatype.
104     @ingroup m_process_management
105
106     A process may be defined as a <em>code</em>, with some
107     <em>private data</em>, executing in a <em>location</em>.
108
109     You should not access directly to the fields of the pointed
110     structure, but always use the provided API to interact with
111     processes.
112  */
113 typedef s4u_Actor* msg_process_t;
114
115 /** @brief Return code of most MSG functions
116     @ingroup msg_simulation
117     @{ */
118 /* Keep these code as binary values: java bindings manipulate | of these values */
119 typedef enum {
120   MSG_OK = 0,                 /**< @brief Everything is right. Keep on going this way ! */
121   MSG_TIMEOUT = 1,            /**< @brief nothing good happened before the timer you provided elapsed */
122   MSG_TRANSFER_FAILURE = 2,   /**< @brief There has been a problem during you task
123       transfer. Either the network is down or the remote host has been
124       shutdown. */
125   MSG_HOST_FAILURE = 4,       /**< @brief System shutdown. The host on which you are
126       running has just been rebooted. Free your datastructures and
127       return now !*/
128   MSG_TASK_CANCELED = 8      /**< @brief Canceled task. This task has been canceled by somebody!*/
129 } msg_error_t;
130 /** @} */
131
132 /************************** Global ******************************************/
133 XBT_PUBLIC(void) MSG_config(const char *key, const char *value);
134 /** \ingroup msg_simulation
135  *  \brief Initialize the MSG internal data.
136  *  \hideinitializer
137  *
138  *  It also check that the link-time and compile-time versions of SimGrid do
139  *  match, so you should use this version instead of the #MSG_init_nocheck
140  *  function that does the same initializations, but without this check.
141  *
142  *  We allow to link against compiled versions that differ in the patch level.
143  */
144 #define MSG_init(argc,argv)  do {                                                          \
145   sg_version_check(SIMGRID_VERSION_MAJOR,SIMGRID_VERSION_MINOR,SIMGRID_VERSION_PATCH);\
146     MSG_init_nocheck(argc,argv);                                                        \
147   } while (0)
148
149 XBT_PUBLIC(void) MSG_init_nocheck(int *argc, char **argv);
150 XBT_PUBLIC(msg_error_t) MSG_main();;
151 XBT_PUBLIC(void) MSG_function_register(const char *name,
152                                        xbt_main_func_t code);
153 XBT_PUBLIC(void) MSG_function_register_default(xbt_main_func_t code);
154 XBT_PUBLIC(void) MSG_launch_application(const char *file);
155 /*Bypass the parser */
156 XBT_PUBLIC(void) MSG_set_function(const char *host_id,
157                                   const char *function_name,
158                                   xbt_dynar_t arguments);
159
160 XBT_PUBLIC(double) MSG_get_clock();
161 XBT_PUBLIC(unsigned long int) MSG_get_sent_msg();
162
163 /************************** Net Zones ***********************************/
164 XBT_PUBLIC(msg_netzone_t) MSG_zone_get_root();
165 XBT_PUBLIC(const char*) MSG_zone_get_name(msg_netzone_t zone);
166 XBT_PUBLIC(msg_netzone_t) MSG_zone_get_by_name(const char* name);
167 XBT_PUBLIC(void) MSG_zone_get_sons(msg_netzone_t zone, xbt_dict_t whereto);
168 XBT_PUBLIC(const char*) MSG_zone_get_property_value(msg_netzone_t as, const char* name);
169 XBT_PUBLIC(void) MSG_zone_set_property_value(msg_netzone_t netzone, const char* name, char* value);
170 XBT_PUBLIC(void) MSG_zone_get_hosts(msg_netzone_t zone, xbt_dynar_t whereto);
171
172 /************************** Storage handling ***********************************/
173 XBT_PUBLIC(const char*) sg_storage_get_name(sg_storage_t storage);
174 #define MSG_storage_get_name(storage) sg_storage_get_name(storage)
175 XBT_PUBLIC(sg_storage_t) sg_storage_get_by_name(const char* name);
176 #define MSG_storage_get_by_name(name) sg_storage_get_by_name(name)
177 XBT_PUBLIC(xbt_dict_t) sg_storage_get_properties(sg_storage_t storage);
178 #define MSG_storage_get_properties(storage) sg_storage_get_properties(storage)
179 XBT_PUBLIC(void) sg_storage_set_property_value(sg_storage_t storage, const char* name, char* value);
180 #define MSG_storage_set_property_value(storage, name, value) sg_storage_set_property_value(storage, name, value)
181 XBT_PUBLIC(const char*) sg_storage_get_property_value(sg_storage_t storage, const char* name);
182 #define MSG_storage_get_property_value(storage, name) sg_storage_get_property_value(storage, name)
183 XBT_PUBLIC(xbt_dynar_t) sg_storages_as_dynar();
184 #define MSG_storages_as_dynar() sg_storages_as_dynar()
185 XBT_PUBLIC(void) sg_storage_set_data(sg_storage_t host, void* data);
186 #define MSG_storage_set_data(storage, data) sg_storage_set_data(storage, data)
187 XBT_PUBLIC(void*) sg_storage_get_data(sg_storage_t storage);
188 #define MSG_storage_get_data(storage) sg_storage_get_data(storage)
189 XBT_PUBLIC(const char*) sg_storage_get_host(sg_storage_t storage);
190 #define MSG_storage_get_host(storage) sg_storage_get_host(storage)
191 XBT_PUBLIC(sg_size_t) sg_storage_read(sg_storage_t storage, sg_size_t size);
192 #define MSG_storage_read(storage, size) sg_storage_read(storage, size)
193 XBT_PUBLIC(sg_size_t) sg_storage_write(sg_storage_t storage, sg_size_t size);
194 #define MSG_storage_write(storage, size) sg_storage_write(storage, size)
195
196 /************************** Host handling ***********************************/
197 XBT_PUBLIC(void) MSG_host_get_process_list(msg_host_t h, xbt_dynar_t whereto);
198
199 XBT_ATTRIB_DEPRECATED_v320("Use MSG_host_get_speed(): v3.20 will drop MSG_host_get_current_power_peak() "
200                            "completely.") static inline double MSG_host_get_current_power_peak(msg_host_t host)
201 {
202   return MSG_host_get_speed(host);
203 }
204
205 XBT_PUBLIC(double) MSG_host_get_power_peak_at(msg_host_t h, int pstate);
206
207 XBT_PUBLIC(void) MSG_create_environment(const char *file);
208
209 /************************** Process handling *********************************/
210 XBT_PUBLIC(msg_process_t) MSG_process_create(const char *name,
211                                            xbt_main_func_t code,
212                                            void *data, msg_host_t host);
213 XBT_PUBLIC(msg_process_t)
214 MSG_process_create_with_arguments(const char* name, xbt_main_func_t code, void* data, msg_host_t host, int argc,
215                                   char** argv);
216 XBT_PUBLIC(msg_process_t)
217 MSG_process_create_with_environment(const char* name, xbt_main_func_t code, void* data, msg_host_t host, int argc,
218                                     char** argv, xbt_dict_t properties);
219
220 XBT_PUBLIC(msg_process_t) MSG_process_attach(const char* name, void* data, msg_host_t host, xbt_dict_t properties);
221 XBT_PUBLIC(void) MSG_process_detach();
222
223 XBT_PUBLIC(void) MSG_process_kill(msg_process_t process);
224 XBT_PUBLIC(int) MSG_process_killall(int reset_PIDs);
225 XBT_PUBLIC(msg_error_t) MSG_process_migrate(msg_process_t process, msg_host_t host);
226 XBT_PUBLIC(void) MSG_process_yield();
227
228 XBT_PUBLIC(void *) MSG_process_get_data(msg_process_t process);
229 XBT_PUBLIC(msg_error_t) MSG_process_set_data(msg_process_t process,
230                                              void *data);
231 XBT_PUBLIC(void) MSG_process_set_data_cleanup(void_f_pvoid_t data_cleanup);
232 XBT_PUBLIC(msg_host_t) MSG_process_get_host(msg_process_t process);
233 XBT_PUBLIC(msg_process_t) MSG_process_from_PID(int PID);
234 XBT_PUBLIC(int) MSG_process_get_PID(msg_process_t process);
235 XBT_PUBLIC(int) MSG_process_get_PPID(msg_process_t process);
236 XBT_PUBLIC(const char *) MSG_process_get_name(msg_process_t process);
237 XBT_PUBLIC(int) MSG_process_self_PID();
238 XBT_PUBLIC(int) MSG_process_self_PPID();
239 XBT_PUBLIC(const char*) MSG_process_self_name();
240 XBT_PUBLIC(msg_process_t) MSG_process_self();
241 XBT_PUBLIC(xbt_dynar_t) MSG_processes_as_dynar();
242 XBT_PUBLIC(int) MSG_process_get_number();
243
244 XBT_PUBLIC(msg_error_t) MSG_process_set_kill_time(msg_process_t process, double kill_time);
245
246 /*property handlers*/
247 XBT_PUBLIC(xbt_dict_t) MSG_process_get_properties(msg_process_t process);
248 XBT_PUBLIC(const char*) MSG_process_get_property_value(msg_process_t process, const char* name);
249
250 XBT_PUBLIC(msg_error_t) MSG_process_suspend(msg_process_t process);
251 XBT_PUBLIC(msg_error_t) MSG_process_resume(msg_process_t process);
252 XBT_PUBLIC(int) MSG_process_is_suspended(msg_process_t process);
253 XBT_PUBLIC(void) MSG_process_on_exit(int_f_pvoid_pvoid_t fun, void *data);
254 XBT_PUBLIC(void) MSG_process_auto_restart_set(msg_process_t process, int auto_restart);
255
256 XBT_PUBLIC(void) MSG_process_daemonize(msg_process_t process);
257 XBT_PUBLIC(msg_process_t) MSG_process_restart(msg_process_t process);
258 XBT_PUBLIC(void) MSG_process_ref(msg_process_t process);
259 XBT_PUBLIC(void) MSG_process_unref(msg_process_t process);
260
261 /************************** Task handling ************************************/
262 XBT_PUBLIC(msg_task_t) MSG_task_create(const char* name, double flops_amount, double bytes_amount, void* data);
263 XBT_PUBLIC(msg_task_t) MSG_parallel_task_create(const char *name,
264                                               int host_nb,
265                                               const msg_host_t * host_list,
266                                               double *flops_amount,
267                                               double *bytes_amount,
268                                               void *data);
269 XBT_PUBLIC(void *) MSG_task_get_data(msg_task_t task);
270 XBT_PUBLIC(void) MSG_task_set_data(msg_task_t task, void *data);
271 XBT_PUBLIC(void) MSG_task_set_copy_callback(void (*callback) (
272     msg_task_t task, msg_process_t src, msg_process_t dst));
273 XBT_PUBLIC(msg_process_t) MSG_task_get_sender(msg_task_t task);
274 XBT_PUBLIC(msg_host_t) MSG_task_get_source(msg_task_t task);
275 XBT_PUBLIC(const char *) MSG_task_get_name(msg_task_t task);
276 XBT_PUBLIC(void) MSG_task_set_name(msg_task_t task, const char *name);
277 XBT_PUBLIC(msg_error_t) MSG_task_cancel(msg_task_t task);
278 XBT_PUBLIC(msg_error_t) MSG_task_destroy(msg_task_t task);
279
280 XBT_PUBLIC(msg_error_t) MSG_task_execute(msg_task_t task);
281 XBT_PUBLIC(msg_error_t) MSG_parallel_task_execute(msg_task_t task);
282 XBT_PUBLIC(msg_error_t) MSG_parallel_task_execute_with_timeout(msg_task_t task, double timeout);
283 XBT_PUBLIC(void) MSG_task_set_priority(msg_task_t task, double priority);
284 XBT_PUBLIC(void) MSG_task_set_bound(msg_task_t task, double bound);
285
286 XBT_PUBLIC(msg_error_t) MSG_process_join(msg_process_t process, double timeout);
287 XBT_PUBLIC(msg_error_t) MSG_process_sleep(double nb_sec);
288
289 XBT_PUBLIC(void) MSG_task_set_flops_amount(msg_task_t task, double flops_amount);
290 XBT_PUBLIC(double) MSG_task_get_flops_amount(msg_task_t task);
291 XBT_PUBLIC(double) MSG_task_get_remaining_work_ratio(msg_task_t task);
292 XBT_PUBLIC(void) MSG_task_set_bytes_amount(msg_task_t task, double bytes_amount);
293
294
295 XBT_PUBLIC(double) MSG_task_get_remaining_communication(msg_task_t task);
296 XBT_PUBLIC(double) MSG_task_get_bytes_amount(msg_task_t task);
297
298 XBT_PUBLIC(msg_error_t) MSG_task_receive_ext(msg_task_t* task, const char* alias, double timeout, msg_host_t host);
299
300 XBT_PUBLIC(msg_error_t) MSG_task_receive_with_timeout(msg_task_t* task, const char* alias, double timeout);
301
302 XBT_PUBLIC(msg_error_t) MSG_task_receive(msg_task_t* task, const char* alias);
303 #define MSG_task_recv(t,a) MSG_task_receive(t,a)
304
305 XBT_PUBLIC(msg_error_t)
306 MSG_task_receive_ext_bounded(msg_task_t* task, const char* alias, double timeout, msg_host_t host, double rate);
307
308 XBT_PUBLIC(msg_error_t)
309 MSG_task_receive_with_timeout_bounded(msg_task_t* task, const char* alias, double timeout, double rate);
310 XBT_PUBLIC(msg_error_t) MSG_task_receive_bounded(msg_task_t * task, const char *alias,double rate);
311 #define MSG_task_recv_bounded(t,a,r) MSG_task_receive_bounded(t,a,r)
312
313 XBT_PUBLIC(msg_comm_t) MSG_task_isend(msg_task_t task, const char *alias);
314 XBT_PUBLIC(msg_comm_t) MSG_task_isend_bounded(msg_task_t task, const char *alias, double maxrate);
315 XBT_ATTRIB_DEPRECATED_v320(
316     "This function will be removed from SimGrid v3.20. If you really need this function, please speak up quickly.")
317     XBT_PUBLIC(msg_comm_t) MSG_task_isend_with_matching(msg_task_t task, const char* alias,
318                                                         int (*match_fun)(void*, void*, void*), void* match_data);
319
320 XBT_PUBLIC(void) MSG_task_dsend(msg_task_t task, const char *alias, void_f_pvoid_t cleanup);
321 XBT_PUBLIC(void) MSG_task_dsend_bounded(msg_task_t task, const char *alias, void_f_pvoid_t cleanup, double maxrate);
322 XBT_PUBLIC(msg_comm_t) MSG_task_irecv(msg_task_t * task, const char *alias);
323 XBT_PUBLIC(msg_comm_t) MSG_task_irecv_bounded(msg_task_t * task, const char *alias, double rate);
324 XBT_PUBLIC(int) MSG_comm_test(msg_comm_t comm);
325 XBT_PUBLIC(int) MSG_comm_testany(xbt_dynar_t comms);
326 XBT_PUBLIC(void) MSG_comm_destroy(msg_comm_t comm);
327 XBT_PUBLIC(msg_error_t) MSG_comm_wait(msg_comm_t comm, double timeout);
328 XBT_PUBLIC(void) MSG_comm_waitall(msg_comm_t * comm, int nb_elem, double timeout);
329 XBT_PUBLIC(int) MSG_comm_waitany(xbt_dynar_t comms);
330 XBT_PUBLIC(msg_task_t) MSG_comm_get_task(msg_comm_t comm);
331 XBT_PUBLIC(msg_error_t) MSG_comm_get_status(msg_comm_t comm);
332
333 XBT_PUBLIC(int) MSG_task_listen(const char *alias);
334 XBT_PUBLIC(msg_error_t) MSG_task_send_with_timeout(msg_task_t task, const char *alias, double timeout);
335 XBT_PUBLIC(msg_error_t) MSG_task_send_with_timeout_bounded(msg_task_t task, const char *alias, double timeout, double maxrate);
336 XBT_PUBLIC(msg_error_t) MSG_task_send(msg_task_t task, const char *alias);
337 XBT_PUBLIC(msg_error_t) MSG_task_send_bounded(msg_task_t task, const char *alias, double rate);
338 XBT_PUBLIC(int) MSG_task_listen_from(const char *alias);
339 XBT_PUBLIC(void) MSG_task_set_category (msg_task_t task, const char *category);
340 XBT_PUBLIC(const char *) MSG_task_get_category (msg_task_t task);
341
342 /************************** Mailbox handling ************************************/
343
344 /* @brief MSG_mailbox_set_async - set a mailbox as eager
345  * Sets the mailbox to a permanent receiver mode. Messages sent to this mailbox will then be sent just after the send
346  * is issued, without waiting for the corresponding receive.
347  * This call should be done before issuing any receive, and on the receiver's side only
348  * @param alias    The alias of the mailbox to modify.
349  */
350 XBT_PUBLIC(void) MSG_mailbox_set_async(const char *alias);
351
352 /************************** Action handling **********************************/
353 XBT_PUBLIC(msg_error_t) MSG_action_trace_run(char *path);
354 XBT_PUBLIC(void) MSG_action_init();
355 XBT_PUBLIC(void) MSG_action_exit();
356
357 /** @brief Opaque type representing a semaphore
358  *  @ingroup msg_synchro
359  *  @hideinitializer
360  */
361 typedef struct s_smx_sem_t* msg_sem_t; // Yeah that's a rename of the smx_sem_t which doesnt require smx_sem_t to be
362                                        // declared here
363 XBT_PUBLIC(msg_sem_t) MSG_sem_init(int initial_value);
364 XBT_PUBLIC(void) MSG_sem_acquire(msg_sem_t sem);
365 XBT_PUBLIC(msg_error_t) MSG_sem_acquire_timeout(msg_sem_t sem, double timeout);
366 XBT_PUBLIC(void) MSG_sem_release(msg_sem_t sem);
367 XBT_PUBLIC(int) MSG_sem_get_capacity(msg_sem_t sem);
368 XBT_PUBLIC(void) MSG_sem_destroy(msg_sem_t sem);
369 XBT_PUBLIC(int) MSG_sem_would_block(msg_sem_t sem);
370
371 /** @brief Opaque type representing a barrier identifier
372  *  @ingroup msg_synchro
373  *  @hideinitializer
374  */
375
376 #define MSG_BARRIER_SERIAL_PROCESS -1
377 typedef struct s_msg_bar_t* msg_bar_t;
378 XBT_PUBLIC(msg_bar_t) MSG_barrier_init( unsigned int count);
379 XBT_PUBLIC(void) MSG_barrier_destroy(msg_bar_t bar);
380 XBT_PUBLIC(int) MSG_barrier_wait(msg_bar_t bar);
381
382 /** @brief Opaque type describing a Virtual Machine.
383  *  @ingroup msg_VMs
384  *
385  * All this is highly experimental and the interface will probably change in the future.
386  * Please don't depend on this yet (although testing is welcomed if you feel so).
387  * Usual lack of guaranty of any kind applies here, and is even increased.
388  *
389  */
390
391 XBT_PUBLIC(int) sg_vm_is_created(sg_vm_t vm);
392 #define MSG_vm_is_created(vm) sg_vm_is_created(vm)
393 XBT_PUBLIC(int) sg_vm_is_running(sg_vm_t vm);
394 #define MSG_vm_is_running(vm) sg_vm_is_running(vm)
395 XBT_PUBLIC(int) sg_vm_is_suspended(sg_vm_t vm);
396 #define MSG_vm_is_suspended(vm) sg_vm_is_suspended(vm)
397
398 XBT_PUBLIC(const char*) sg_vm_get_name(sg_vm_t vm);
399 #define MSG_vm_get_name(vm) sg_vm_get_name(vm)
400 XBT_PUBLIC(void) sg_vm_set_ramsize(sg_vm_t vm, size_t size);
401 #define MSG_vm_set_ramsize(vm, size) sg_vm_set_ramsize(vm, size)
402 XBT_PUBLIC(size_t) sg_vm_get_ramsize(sg_vm_t vm);
403 #define MSG_vm_get_ramsize(vm) sg_vm_get_ramsize(vm)
404
405 XBT_PUBLIC(sg_vm_t) sg_vm_create_core(sg_host_t pm, const char* name);
406 #define MSG_vm_create_core(vm, name) sg_vm_create_core(vm, name)
407 XBT_PUBLIC(sg_vm_t) sg_vm_create_multicore(sg_host_t pm, const char* name, int coreAmount);
408 #define MSG_vm_create_multicore(vm, name, coreAmount) sg_vm_create_multicore(vm, name, coreAmount)
409
410 XBT_ATTRIB_DEPRECATED_v322("Use sg_vm_create_migratable() from the live migration plugin: "
411                            "v3.22 will drop MSG_vm_create() completely.") XBT_PUBLIC(msg_vm_t)
412     MSG_vm_create(msg_host_t ind_pm, const char* name, int coreAmount, int ramsize, int mig_netspeed, int dp_intensity);
413
414 XBT_PUBLIC(void) sg_vm_start(msg_vm_t vm);
415 #define MSG_vm_start(vm) sg_vm_start(vm)
416 XBT_PUBLIC(void) sg_vm_suspend(msg_vm_t vm);
417 #define MSG_vm_suspend(vm) sg_vm_suspend(vm)
418 XBT_PUBLIC(void) sg_vm_resume(msg_vm_t vm);
419 #define MSG_vm_resume(vm) sg_vm_resume(vm)
420 XBT_PUBLIC(void) sg_vm_shutdown(msg_vm_t vm);
421 #define MSG_vm_shutdown(vm) sg_vm_shutdown(vm)
422 XBT_PUBLIC(void) sg_vm_destroy(msg_vm_t vm);
423 #define MSG_vm_destroy(vm) sg_vm_destroy(vm)
424 XBT_PUBLIC(sg_host_t) sg_vm_get_pm(sg_vm_t vm);
425 #define MSG_vm_get_pm(vm) sg_vm_get_pm(vm)
426 XBT_PUBLIC(void) sg_vm_set_bound(sg_vm_t vm, double bound);
427 #define MSG_vm_set_bound(vm, bound) sg_vm_set_bound(vm, bound)
428
429 #include "simgrid/instr.h"
430
431 /* ****************************************************************************************** */
432 /* Used only by the bindings -- unclean pimple, please ignore if you're not writing a binding */
433 XBT_PUBLIC(smx_context_t) MSG_process_get_smx_ctx(msg_process_t process);
434
435 SG_END_DECL()
436
437 #ifdef __cplusplus
438 XBT_PUBLIC(msg_process_t)
439 MSG_process_create_from_stdfunc(const char* name, std::function<void()> code, void* data, msg_host_t host,
440                                 std::map<std::string, std::string>* properties);
441 #endif
442
443 #endif