Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use method get() instead of &* for intrusive_ptr.
[simgrid.git] / src / simix / popping.cpp
1 /* Copyright (c) 2010-2017. 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 #include "smx_private.hpp"
7 #include "xbt/xbt_os_thread.h"
8 #if SIMGRID_HAVE_MC
9 #include "src/mc/mc_private.hpp"
10 #endif
11
12 #include "src/kernel/activity/CommImpl.hpp"
13 #include "src/kernel/activity/ExecImpl.hpp"
14 #include "src/kernel/activity/SleepImpl.hpp"
15 #include "src/kernel/activity/SynchroIo.hpp"
16 #include "src/kernel/activity/SynchroRaw.hpp"
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_popping, simix,
19                                 "Popping part of SIMIX (transmuting from user request into kernel handlers)");
20
21 void SIMIX_simcall_answer(smx_simcall_t simcall)
22 {
23   if (simcall->issuer != simix_global->maestro_process){
24     XBT_DEBUG("Answer simcall %s (%d) issued by %s (%p)", SIMIX_simcall_name(simcall->call), (int)simcall->call,
25         simcall->issuer->name.c_str(), simcall->issuer);
26     simcall->issuer->simcall.call = SIMCALL_NONE;
27 #if 0
28     /* This check should be useless and slows everyone. Reactivate if you see something weird in process scheduling. */
29     if (std::find(begin(simix_global->process_to_run), end(simix_global->process_to_run), simcall->issuer) !=
30         end(simix_global->process_to_run))
31       DIE_IMPOSSIBLE;
32 #endif
33     simix_global->process_to_run.push_back(simcall->issuer);
34   }
35 }
36
37 void SIMIX_simcall_exit(smx_activity_t synchro)
38 {
39   synchro->post();
40 }
41
42 void SIMIX_run_kernel(std::function<void()> const* code)
43 {
44   (*code)();
45 }
46
47 /** Kernel code for run_blocking
48  *
49  * The implementtion looks a lot like SIMIX_run_kernel ^^
50  *
51  * However, this `run_blocking` is blocking so the process will not be woken
52  * up until `SIMIX_simcall_answer(simcall)`` is called by the kernel.
53  * This means that `code` is responsible for doing this.
54  */
55 void SIMIX_run_blocking(std::function<void()> const* code)
56 {
57   (*code)();
58 }