Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Avoid unnecessary copy of parameters for parallel_execute.
[simgrid.git] / src / simix / smx_host_private.hpp
1 /* Copyright (c) 2007-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 #ifndef SIMIX_HOST_PRIVATE_HPP
7 #define SIMIX_HOST_PRIVATE_HPP
8
9 #include "src/simix/ActorImpl.hpp"
10
11 #include <boost/intrusive/list.hpp>
12
13 XBT_PRIVATE void SIMIX_execution_finish(smx_activity_t synchro);
14
15 XBT_PRIVATE simgrid::kernel::activity::ExecImplPtr
16 SIMIX_execution_parallel_start(std::string name, int host_nb, const sg_host_t* host_list, const double* flops_amount,
17                                const double* bytes_amount, double rate, double timeout);
18
19 #endif