Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[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     xbt_assert(not XBT_LOG_ISENABLED(simix_popping, xbt_log_priority_debug) ||
18                    std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), simcall->issuer) ==
19                        end(simix_global->actors_to_run),
20                "Actor %p should not exist in actors_to_run!", simcall->issuer);
21     simix_global->actors_to_run.push_back(simcall->issuer);
22   }
23 }
24
25 void SIMIX_run_kernel(std::function<void()> const* code)
26 {
27   (*code)();
28 }
29
30 /** Kernel code for run_blocking
31  *
32  * The implementation looks a lot like SIMIX_run_kernel ^^
33  *
34  * However, this `run_blocking` is blocking so the process will not be woken
35  * up until `SIMIX_simcall_answer(simcall)`` is called by the kernel.
36  * This means that `code` is responsible for doing this.
37  */
38 void SIMIX_run_blocking(std::function<void()> const* code)
39 {
40   (*code)();
41 }