Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill dead code
[simgrid.git] / src / simix / smx_host_private.h
1 /* Copyright (c) 2007-2010, 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SIMIX_HOST_PRIVATE_H
8 #define _SIMIX_HOST_PRIVATE_H
9
10 #include <vector>
11 #include <functional>
12
13 #include <xbt/base.h>
14 #include <xbt/Extendable.hpp>
15
16 #include "simgrid/simix.h"
17 #include "popping_private.h"
18
19 #include "src/kernel/activity/SynchroExec.hpp"
20
21 /** @brief Host datatype from SIMIX POV */
22 namespace simgrid {
23   namespace simix {
24     class ProcessArg;
25
26     class Host {
27     public:
28       static simgrid::xbt::Extension<simgrid::s4u::Host, Host> EXTENSION_ID;
29
30       explicit Host();
31       virtual ~Host();
32
33       xbt_swag_t process_list;
34       std::vector<ProcessArg*> auto_restart_processes;
35       std::vector<ProcessArg*> boot_processes;
36
37       void turnOn();
38     };
39   }
40 }
41 typedef simgrid::simix::Host s_smx_host_priv_t;
42
43 SG_BEGIN_DECL()
44 XBT_PRIVATE void SIMIX_host_add_auto_restart_process(sg_host_t host,
45                                          const char *name,
46                                          std::function<void()> code,
47                                          void *data,
48                                          double kill_time,
49                                          xbt_dict_t properties,
50                                          int auto_restart);
51
52 XBT_PRIVATE void SIMIX_host_autorestart(sg_host_t host);
53 XBT_PRIVATE smx_activity_t SIMIX_execution_start(smx_actor_t issuer, const char *name,
54     double flops_amount, double priority, double bound);
55 XBT_PRIVATE smx_activity_t SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list,
56                                                           double* flops_amount, double* bytes_amount, double amount,
57                                                           double rate, double timeout);
58 XBT_PRIVATE void SIMIX_execution_cancel(smx_activity_t synchro);
59 XBT_PRIVATE void SIMIX_execution_set_priority(smx_activity_t synchro, double priority);
60 XBT_PRIVATE void SIMIX_execution_set_bound(smx_activity_t synchro, double bound);
61
62 XBT_PRIVATE void SIMIX_execution_finish(simgrid::kernel::activity::Exec *exec);
63
64 XBT_PRIVATE void SIMIX_set_category(smx_activity_t synchro, const char *category);
65
66 SG_END_DECL()
67
68 #endif
69