Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Avoid strict-aliasing related issues when compiling with optimization
[palacios.git] / linux_module / numa.h
1 /* NUMA topology 
2  * (c) Jack Lange, 2013
3  */
4
5
6 #ifndef __NUMA_H__
7 #define __NUMA_H__
8
9 int palacios_init_numa( void );
10 int palacios_deinit_numa(void);
11
12 int numa_num_nodes(void );
13 int numa_cpu_to_node(int cpu_id);
14 int numa_addr_to_node(uintptr_t phys_addr);
15 int numa_get_distance(int node1, int node2);
16
17
18
19 #endif
20