Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
_SIMIX_cond_wait becomes ConditionVariable::wait
[simgrid.git] / src / simix / popping.cpp
1 /* Copyright (c) 2010-2019. 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
8 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_popping, simix,
9                                 "Popping part of SIMIX (transmuting from user request into kernel handlers)");
10
11 void SIMIX_simcall_answer(smx_simcall_t simcall)
12 {
13   if (simcall->issuer != simix_global->maestro_process){
14     XBT_DEBUG("Answer simcall %s (%d) issued by %s (%p)", SIMIX_simcall_name(simcall->call), (int)simcall->call,
15               simcall->issuer->get_cname(), simcall->issuer);
16     simcall->issuer->simcall.call = SIMCALL_NONE;
17 #if 0
18     /* This check should be useless and slows everyone. Reactivate if you see something weird in process scheduling. */
19     if (std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), simcall->issuer) !=
20         end(simix_global->actors_to_run))
21       DIE_IMPOSSIBLE;
22 #endif
23     simix_global->actors_to_run.push_back(simcall->issuer);
24   }
25 }
26
27 void SIMIX_simcall_exit(smx_activity_t activity)
28 {
29   if (activity != nullptr) // When migrating, the surf activity is disconnected from its simix activity before cancel
30     activity->post();
31 }
32
33 void SIMIX_run_kernel(std::function<void()> const* code)
34 {
35   (*code)();
36 }
37
38 /** Kernel code for run_blocking
39  *
40  * The implementtion looks a lot like SIMIX_run_kernel ^^
41  *
42  * However, this `run_blocking` is blocking so the process will not be woken
43  * up until `SIMIX_simcall_answer(simcall)`` is called by the kernel.
44  * This means that `code` is responsible for doing this.
45  */
46 void SIMIX_run_blocking(std::function<void()> const* code)
47 {
48   (*code)();
49 }