Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
15c66f59162654f28ca594481c84834e20dddf7b
[simgrid.git] / include / simgrid / host.h
1 /* Copyright (c) 2013-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 SIMGRID_HOST_H_
8 #define SIMGRID_HOST_H_
9
10 #include <xbt/dict.h>
11 SG_BEGIN_DECL()
12
13 typedef xbt_dictelm_t sg_host_t;
14 XBT_PUBLIC(sg_host_t) sg_host_by_name(const char *name);
15 static XBT_INLINE char *sg_host_get_name(sg_host_t host){
16         return host->key;
17 }
18
19 #ifdef __cplusplus
20 #define DEFINE_EXTERNAL_CLASS(klass) class klass;
21 class Cpu;
22 #else
23 #define DEFINE_EXTERNAL_CLASS(klass) typedef struct klass klass;
24 #endif
25
26 // ========== MSG Layer ==============
27 typedef struct s_msg_host_priv *msg_host_priv_t;
28 msg_host_priv_t sg_host_msg(sg_host_t host);
29 XBT_PUBLIC(void) sg_host_msg_set(sg_host_t host, msg_host_priv_t priv);
30 XBT_PUBLIC(void) sg_host_msg_destroy(sg_host_t host);
31
32 // ========== Simix layer =============
33 typedef struct s_smx_host_priv *smx_host_priv_t;
34 XBT_PUBLIC(smx_host_priv_t) sg_host_simix(sg_host_t host);
35 XBT_PUBLIC(void) sg_host_simix_set(sg_host_t host, smx_host_priv_t priv);
36 XBT_PUBLIC(void) sg_host_simix_destroy(sg_host_t host);
37
38 // ========== SURF CPU ============
39 DEFINE_EXTERNAL_CLASS(Cpu);
40 typedef Cpu *surf_cpu_t;
41 typedef Cpu *CpuPtr;
42 XBT_PUBLIC(surf_cpu_t) sg_host_surfcpu(sg_host_t host);
43 XBT_PUBLIC(void) sg_host_surfcpu_set(sg_host_t host, surf_cpu_t cpu);
44 XBT_PUBLIC(void) sg_host_surfcpu_destroy(sg_host_t host);
45
46
47 // Module initializer. Won't survive the conversion to C++. Hopefully.
48 XBT_PUBLIC(void) sg_host_init(void);
49
50 SG_END_DECL()
51
52 #endif /* SIMGRID_HOST_H_ */