Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2cefef94e65c9123f4989257fe91d6640ca7629b
[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.h"
7 #include "xbt/xbt_os_thread.h"
8 #if SIMGRID_HAVE_MC
9 #include "src/mc/mc_private.h"
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     xbt_assert(SIMIX_is_maestro(), "Ugh! This code path is reserved for maestro, but I'm '%s' on '%s'",
28                SIMIX_process_self()->cname(), sg_host_get_name(SIMIX_process_self()->host));
29     /* This check should be useless and slows everyone. Reactivate if you see something weird in process scheduling. */
30     // if (xbt_dynar_member(simix_global->process_to_run, &(simcall->issuer)))
31     //   DIE_IMPOSSIBLE;
32     xbt_dynar_push_as(simix_global->process_to_run, smx_actor_t, simcall->issuer);
33   }
34 }
35
36 void SIMIX_simcall_exit(smx_activity_t synchro)
37 {
38   synchro->post();
39 }
40
41 void SIMIX_run_kernel(std::function<void()> const* code)
42 {
43   (*code)();
44 }
45
46 /** Kernel code for run_blocking
47  *
48  * The implementtion looks a lot like SIMIX_run_kernel ^^
49  *
50  * However, this `run_blocking` is blocking so the process will not be woken
51  * up until `SIMIX_simcall_answer(simcall)`` is called by the kernel.
52  * This means that `code` is responsible for doing this.
53  */
54 void SIMIX_run_blocking(std::function<void()> const* code)
55 {
56   (*code)();
57 }