Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused variable.
[simgrid.git] / src / simix / popping_bodies.cpp
1 /**********************************************************************/
2 /* File generated by src/simix/simcalls.py from src/simix/simcalls.in */
3 /*                                                                    */
4 /*                    DO NOT EVER CHANGE THIS FILE                    */
5 /*                                                                    */
6 /* change simcalls specification in src/simix/simcalls.in             */
7 /* Copyright (c) 2014-2017. The SimGrid Team. All rights reserved.    */
8 /**********************************************************************/
9
10 /*
11  * Note that the name comes from http://en.wikipedia.org/wiki/Popping
12  * Indeed, the control flow is doing a strange dance in there.
13  *
14  * That's not about http://en.wikipedia.org/wiki/Poop, despite the odor :)
15  */
16
17 #include <functional>
18 #include "smx_private.h"
19 #include "src/mc/mc_forward.hpp"
20 #include "xbt/ex.h"
21 #include <simgrid/simix.hpp>
22 /** @cond */ // Please Doxygen, don't look at this
23
24 template<class R, class... T>
25 inline static R simcall(e_smx_simcall_t call, T const&... t)
26 {
27   smx_actor_t self = SIMIX_process_self();
28   simgrid::simix::marshal(&self->simcall, call, t...);
29   if (self != simix_global->maestro_process) {
30     XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->name.c_str(),
31               SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call);
32     SIMIX_process_yield(self);
33   } else {
34     SIMIX_simcall_handle(&self->simcall, 0);
35   }
36   return simgrid::simix::unmarshal<R>(self->simcall.result);
37 }
38
39 inline static void simcall_BODY_process_killall(int reset_pid) {
40     /* Go to that function to follow the code flow through the simcall barrier */
41     if (0) simcall_HANDLER_process_killall(&SIMIX_process_self()->simcall, reset_pid);
42     return simcall<void, int>(SIMCALL_PROCESS_KILLALL, reset_pid);
43   }
44
45 inline static void simcall_BODY_process_cleanup(smx_actor_t process) {
46     /* Go to that function to follow the code flow through the simcall barrier */
47     if (0) SIMIX_process_cleanup(process);
48     return simcall<void, smx_actor_t>(SIMCALL_PROCESS_CLEANUP, process);
49   }
50
51 inline static void simcall_BODY_process_suspend(smx_actor_t process) {
52     /* Go to that function to follow the code flow through the simcall barrier */
53     if (0) simcall_HANDLER_process_suspend(&SIMIX_process_self()->simcall, process);
54     return simcall<void, smx_actor_t>(SIMCALL_PROCESS_SUSPEND, process);
55   }
56
57 inline static int simcall_BODY_process_join(smx_actor_t process, double timeout) {
58     /* Go to that function to follow the code flow through the simcall barrier */
59     if (0) simcall_HANDLER_process_join(&SIMIX_process_self()->simcall, process, timeout);
60     return simcall<int, smx_actor_t, double>(SIMCALL_PROCESS_JOIN, process, timeout);
61   }
62
63 inline static int simcall_BODY_process_sleep(double duration) {
64     /* Go to that function to follow the code flow through the simcall barrier */
65     if (0) simcall_HANDLER_process_sleep(&SIMIX_process_self()->simcall, duration);
66     return simcall<int, double>(SIMCALL_PROCESS_SLEEP, duration);
67   }
68
69   inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
70   simcall_BODY_execution_start(const char* name, double flops_amount, double priority, double bound)
71   {
72     /* Go to that function to follow the code flow through the simcall barrier */
73     if (0) simcall_HANDLER_execution_start(&SIMIX_process_self()->simcall, name, flops_amount, priority, bound);
74     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, double, double, double>(
75         SIMCALL_EXECUTION_START, name, flops_amount, priority, bound);
76   }
77
78   inline static boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>
79   simcall_BODY_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount,
80                                         double* bytes_amount, double rate, double timeout)
81   {
82     /* Go to that function to follow the code flow through the simcall barrier */
83     if (0)
84       SIMIX_execution_parallel_start(name, host_nb, host_list, flops_amount, bytes_amount, rate, timeout);
85     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ExecImpl>, const char*, int, sg_host_t*, double*,
86                    double*, double, double>(SIMCALL_EXECUTION_PARALLEL_START, name, host_nb, host_list, flops_amount,
87                                             bytes_amount, rate, timeout);
88   }
89
90   inline static void
91   simcall_BODY_execution_cancel(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
92   {
93     /* Go to that function to follow the code flow through the simcall barrier */
94     if (0) SIMIX_execution_cancel(execution);
95     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_CANCEL,
96                                                                                         execution);
97   }
98
99   inline static void
100   simcall_BODY_execution_set_priority(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution,
101                                       double priority)
102   {
103     /* Go to that function to follow the code flow through the simcall barrier */
104     if (0) SIMIX_execution_set_priority(execution, priority);
105     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(
106         SIMCALL_EXECUTION_SET_PRIORITY, execution, priority);
107   }
108
109   inline static void
110   simcall_BODY_execution_set_bound(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution,
111                                    double bound)
112   {
113     /* Go to that function to follow the code flow through the simcall barrier */
114     if (0) SIMIX_execution_set_bound(execution, bound);
115     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(
116         SIMCALL_EXECUTION_SET_BOUND, execution, bound);
117   }
118
119   inline static int simcall_BODY_execution_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> execution)
120   {
121     /* Go to that function to follow the code flow through the simcall barrier */
122     if (0) simcall_HANDLER_execution_wait(&SIMIX_process_self()->simcall, execution);
123     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_EXECUTION_WAIT,
124                                                                                        execution);
125   }
126
127 inline static void simcall_BODY_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data) {
128     /* Go to that function to follow the code flow through the simcall barrier */
129     if (0) SIMIX_process_on_exit(process, fun, data);
130     return simcall<void, smx_actor_t, int_f_pvoid_pvoid_t, void*>(SIMCALL_PROCESS_ON_EXIT, process, fun, data);
131   }
132
133   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
134   simcall_BODY_comm_iprobe(smx_mailbox_t mbox, int type, simix_match_func_t match_fun, void* data)
135   {
136     /* Go to that function to follow the code flow through the simcall barrier */
137     if (0)
138       simcall_HANDLER_comm_iprobe(&SIMIX_process_self()->simcall, mbox, type, match_fun, data);
139     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_mailbox_t, int,
140                    simix_match_func_t, void*>(SIMCALL_COMM_IPROBE, mbox, type, match_fun, data);
141   }
142
143 inline static void simcall_BODY_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, size_t src_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout) {
144     /* Go to that function to follow the code flow through the simcall barrier */
145     if (0) simcall_HANDLER_comm_send(&SIMIX_process_self()->simcall, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
146     return simcall<void, smx_actor_t, smx_mailbox_t, double, double, void*, size_t, simix_match_func_t, simix_copy_data_func_t, void*, double>(SIMCALL_COMM_SEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, copy_data_fun, data, timeout);
147   }
148
149   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
150   simcall_BODY_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff,
151                           size_t src_buff_size, simix_match_func_t match_fun, simix_clean_func_t clean_fun,
152                           simix_copy_data_func_t copy_data_fun, void* data, int detached)
153   {
154     /* Go to that function to follow the code flow through the simcall barrier */
155     if (0) simcall_HANDLER_comm_isend(&SIMIX_process_self()->simcall, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun, data, detached);
156     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, double,
157                    double, void*, size_t, simix_match_func_t, simix_clean_func_t, simix_copy_data_func_t, void*, int>(
158         SIMCALL_COMM_ISEND, sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, clean_fun, copy_data_fun,
159         data, detached);
160   }
161
162 inline static void simcall_BODY_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double timeout, double rate) {
163     /* Go to that function to follow the code flow through the simcall barrier */
164     if (0) simcall_HANDLER_comm_recv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
165     return simcall<void, smx_actor_t, smx_mailbox_t, void*, size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double, double>(SIMCALL_COMM_RECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, timeout, rate);
166   }
167
168   inline static boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>
169   simcall_BODY_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size,
170                           simix_match_func_t match_fun, simix_copy_data_func_t copy_data_fun, void* data, double rate)
171   {
172     /* Go to that function to follow the code flow through the simcall barrier */
173     if (0) simcall_HANDLER_comm_irecv(&SIMIX_process_self()->simcall, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
174     return simcall<boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, smx_actor_t, smx_mailbox_t, void*,
175                    size_t*, simix_match_func_t, simix_copy_data_func_t, void*, double>(
176         SIMCALL_COMM_IRECV, receiver, mbox, dst_buff, dst_buff_size, match_fun, copy_data_fun, data, rate);
177   }
178
179 inline static int simcall_BODY_comm_waitany(xbt_dynar_t comms, double timeout) {
180     /* Go to that function to follow the code flow through the simcall barrier */
181     if (0) simcall_HANDLER_comm_waitany(&SIMIX_process_self()->simcall, comms, timeout);
182     return simcall<int, xbt_dynar_t, double>(SIMCALL_COMM_WAITANY, comms, timeout);
183   }
184
185   inline static void simcall_BODY_comm_wait(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm,
186                                             double timeout)
187   {
188     /* Go to that function to follow the code flow through the simcall barrier */
189     if (0) simcall_HANDLER_comm_wait(&SIMIX_process_self()->simcall, comm, timeout);
190     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, double>(SIMCALL_COMM_WAIT, comm,
191                                                                                                 timeout);
192   }
193
194   inline static int simcall_BODY_comm_test(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> comm)
195   {
196     /* Go to that function to follow the code flow through the simcall barrier */
197     if (0) simcall_HANDLER_comm_test(&SIMIX_process_self()->simcall, comm);
198     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>>(SIMCALL_COMM_TEST, comm);
199   }
200
201   inline static int simcall_BODY_comm_testany(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>* comms,
202                                               size_t count)
203   {
204     /* Go to that function to follow the code flow through the simcall barrier */
205     if (0) simcall_HANDLER_comm_testany(&SIMIX_process_self()->simcall, comms, count);
206     return simcall<int, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>*, size_t>(SIMCALL_COMM_TESTANY,
207                                                                                                 comms, count);
208   }
209
210 inline static void simcall_BODY_mutex_lock(smx_mutex_t mutex) {
211     /* Go to that function to follow the code flow through the simcall barrier */
212     if (0) simcall_HANDLER_mutex_lock(&SIMIX_process_self()->simcall, mutex);
213     return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_LOCK, mutex);
214   }
215
216 inline static int simcall_BODY_mutex_trylock(smx_mutex_t mutex) {
217     /* Go to that function to follow the code flow through the simcall barrier */
218     if (0) simcall_HANDLER_mutex_trylock(&SIMIX_process_self()->simcall, mutex);
219     return simcall<int, smx_mutex_t>(SIMCALL_MUTEX_TRYLOCK, mutex);
220   }
221
222 inline static void simcall_BODY_mutex_unlock(smx_mutex_t mutex) {
223     /* Go to that function to follow the code flow through the simcall barrier */
224     if (0) simcall_HANDLER_mutex_unlock(&SIMIX_process_self()->simcall, mutex);
225     return simcall<void, smx_mutex_t>(SIMCALL_MUTEX_UNLOCK, mutex);
226   }
227
228 inline static smx_cond_t simcall_BODY_cond_init() {
229     /* Go to that function to follow the code flow through the simcall barrier */
230     if (0) SIMIX_cond_init();
231     return simcall<smx_cond_t>(SIMCALL_COND_INIT);
232   }
233
234 inline static void simcall_BODY_cond_signal(smx_cond_t cond) {
235     /* Go to that function to follow the code flow through the simcall barrier */
236     if (0) SIMIX_cond_signal(cond);
237     return simcall<void, smx_cond_t>(SIMCALL_COND_SIGNAL, cond);
238   }
239
240 inline static void simcall_BODY_cond_wait(smx_cond_t cond, smx_mutex_t mutex) {
241     /* Go to that function to follow the code flow through the simcall barrier */
242     if (0) simcall_HANDLER_cond_wait(&SIMIX_process_self()->simcall, cond, mutex);
243     return simcall<void, smx_cond_t, smx_mutex_t>(SIMCALL_COND_WAIT, cond, mutex);
244   }
245
246 inline static void simcall_BODY_cond_wait_timeout(smx_cond_t cond, smx_mutex_t mutex, double timeout) {
247     /* Go to that function to follow the code flow through the simcall barrier */
248     if (0) simcall_HANDLER_cond_wait_timeout(&SIMIX_process_self()->simcall, cond, mutex, timeout);
249     return simcall<void, smx_cond_t, smx_mutex_t, double>(SIMCALL_COND_WAIT_TIMEOUT, cond, mutex, timeout);
250   }
251
252 inline static void simcall_BODY_cond_broadcast(smx_cond_t cond) {
253     /* Go to that function to follow the code flow through the simcall barrier */
254     if (0) SIMIX_cond_broadcast(cond);
255     return simcall<void, smx_cond_t>(SIMCALL_COND_BROADCAST, cond);
256   }
257
258 inline static void simcall_BODY_sem_acquire(smx_sem_t sem) {
259     /* Go to that function to follow the code flow through the simcall barrier */
260     if (0) simcall_HANDLER_sem_acquire(&SIMIX_process_self()->simcall, sem);
261     return simcall<void, smx_sem_t>(SIMCALL_SEM_ACQUIRE, sem);
262   }
263
264 inline static void simcall_BODY_sem_acquire_timeout(smx_sem_t sem, double timeout) {
265     /* Go to that function to follow the code flow through the simcall barrier */
266     if (0) simcall_HANDLER_sem_acquire_timeout(&SIMIX_process_self()->simcall, sem, timeout);
267     return simcall<void, smx_sem_t, double>(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem, timeout);
268   }
269
270   inline static sg_size_t simcall_BODY_file_read(surf_file_t fd, sg_size_t size)
271   {
272     /* Go to that function to follow the code flow through the simcall barrier */
273     if (0)
274       simcall_HANDLER_file_read(&SIMIX_process_self()->simcall, fd, size);
275     return simcall<sg_size_t, surf_file_t, sg_size_t>(SIMCALL_FILE_READ, fd, size);
276   }
277
278   inline static sg_size_t simcall_BODY_file_write(surf_file_t fd, sg_size_t size)
279   {
280     /* Go to that function to follow the code flow through the simcall barrier */
281     if (0)
282       simcall_HANDLER_file_write(&SIMIX_process_self()->simcall, fd, size);
283     return simcall<sg_size_t, surf_file_t, sg_size_t>(SIMCALL_FILE_WRITE, fd, size);
284   }
285
286 inline static int simcall_BODY_mc_random(int min, int max) {
287     /* Go to that function to follow the code flow through the simcall barrier */
288     if (0) simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);
289     return simcall<int, int, int>(SIMCALL_MC_RANDOM, min, max);
290   }
291
292   inline static void simcall_BODY_set_category(boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl> synchro,
293                                                const char* category)
294   {
295     /* Go to that function to follow the code flow through the simcall barrier */
296     if (0) SIMIX_set_category(synchro, category);
297     return simcall<void, boost::intrusive_ptr<simgrid::kernel::activity::ActivityImpl>, const char*>(
298         SIMCALL_SET_CATEGORY, synchro, category);
299   }
300
301 inline static void simcall_BODY_run_kernel(std::function<void()> const* code) {
302     /* Go to that function to follow the code flow through the simcall barrier */
303     if (0) SIMIX_run_kernel(code);
304     return simcall<void, std::function<void()> const*>(SIMCALL_RUN_KERNEL, code);
305   }
306
307 inline static void simcall_BODY_run_blocking(std::function<void()> const* code) {
308     /* Go to that function to follow the code flow through the simcall barrier */
309     if (0) SIMIX_run_blocking(code);
310     return simcall<void, std::function<void()> const*>(SIMCALL_RUN_BLOCKING, code);
311   }/** @endcond */