Logo AND Algorithmique Numérique Distribuée

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