Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill two useless functions at once
[simgrid.git] / include / simgrid / host.h
1 /* Copyright (c) 2013-2016. 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 SIMGRID_HOST_H_
8 #define SIMGRID_HOST_H_
9
10 #include <stddef.h>
11
12 #include <xbt/dict.h>
13 #include <xbt/dynar.h>
14
15 #include <simgrid/forward.h>
16
17 SG_BEGIN_DECL()
18
19 XBT_PUBLIC(size_t) sg_host_count();
20 XBT_PUBLIC(sg_host_t *) sg_host_list();
21
22 XBT_PUBLIC(size_t) sg_host_extension_create(void(*deleter)(void*));
23 XBT_PUBLIC(void*) sg_host_extension_get(sg_host_t host, size_t rank);
24 XBT_PUBLIC(sg_host_t) sg_host_by_name(const char *name);
25 XBT_PUBLIC(const char*) sg_host_get_name(sg_host_t host);
26 XBT_PUBLIC(xbt_dynar_t) sg_hosts_as_dynar();
27
28 // ========== User Data ==============
29 XBT_PUBLIC(void*) sg_host_user(sg_host_t host);
30 XBT_PUBLIC(void) sg_host_user_set(sg_host_t host, void* userdata);
31 XBT_PUBLIC(void) sg_host_user_destroy(sg_host_t host);
32
33 // ========== MSG Layer ==============
34 typedef struct s_msg_host_priv *msg_host_priv_t;
35 msg_host_priv_t sg_host_msg(sg_host_t host);
36 XBT_PUBLIC(void) sg_host_msg_set(sg_host_t host, msg_host_priv_t priv);
37
38 // ========== Simix layer =============
39 XBT_PUBLIC(smx_host_priv_t) sg_host_simix(sg_host_t host);
40
41 // ========= storage related functions ============
42 XBT_PUBLIC(xbt_dict_t) sg_host_get_mounted_storage_list(sg_host_t host);
43 XBT_PUBLIC(xbt_dynar_t) sg_host_get_attached_storage_list(sg_host_t host);
44 // =========== user-level functions ===============
45 XBT_PUBLIC(double) sg_host_speed(sg_host_t host);
46 XBT_PUBLIC(double) sg_host_get_available_speed(sg_host_t host);
47
48 XBT_PUBLIC(int) sg_host_get_nb_pstates(sg_host_t host);
49 XBT_PUBLIC(int) sg_host_get_pstate(sg_host_t host);
50 XBT_PUBLIC(void) sg_host_set_pstate(sg_host_t host,int pstate);
51 XBT_PUBLIC(xbt_dict_t) sg_host_get_properties(sg_host_t host);
52 XBT_PUBLIC(const char *) sg_host_get_property_value(sg_host_t host,
53                                                      const char *name);
54 XBT_PUBLIC(void) sg_host_dump(sg_host_t ws);
55 SG_END_DECL()
56
57 #endif /* SIMGRID_HOST_H_ */