Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the plugins from the command line, and document it
[simgrid.git] / src / simix / popping.cpp
1 /* Copyright (c) 2010-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 #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 activity)
38 {
39   if (activity != nullptr) // When migrating, the surf activity is disconnected from its simix activity before cancel
40     activity->post();
41 }
42
43 void SIMIX_run_kernel(std::function<void()> const* code)
44 {
45   (*code)();
46 }
47
48 /** Kernel code for run_blocking
49  *
50  * The implementtion looks a lot like SIMIX_run_kernel ^^
51  *
52  * However, this `run_blocking` is blocking so the process will not be woken
53  * up until `SIMIX_simcall_answer(simcall)`` is called by the kernel.
54  * This means that `code` is responsible for doing this.
55  */
56 void SIMIX_run_blocking(std::function<void()> const* code)
57 {
58   (*code)();
59 }