Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
get rid of simix_global and smx_private.hpp
[simgrid.git] / src / simix / popping.cpp
1 /* Copyright (c) 2010-2021. 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 "src/simix/popping_private.hpp"
7 #include "xbt/log.h"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_popping, simix,
10                                 "Popping part of SIMIX (transmuting from user request into kernel handlers)");
11
12 void SIMIX_run_kernel(std::function<void()> const* code)
13 {
14   (*code)();
15 }
16
17 /** Kernel code for run_blocking
18  *
19  * The implementation looks a lot like SIMIX_run_kernel ^^
20  *
21  * However, this `run_blocking` is blocking so the process will not be woken
22  * up until `ActorImpl::simcall_answer()`` is called by the kernel.
23  * This means that `code` is responsible for doing this.
24  */
25 void SIMIX_run_blocking(std::function<void()> const* code)
26 {
27   (*code)();
28 }