Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
120047923ead03d88e2037ffb57a749ac9d1dd12
[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 SIMIX_execution_start(std::string name, std::string category,
16                                                                          double flops_amount, double priority,
17                                                                          double bound, sg_host_t host);
18 XBT_PRIVATE simgrid::kernel::activity::ExecImplPtr
19 SIMIX_execution_parallel_start(std::string name, int host_nb, sg_host_t* host_list, double* flops_amount,
20                                double* bytes_amount, double rate, double timeout);
21
22 #endif