nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cpu_node.h
Go to the documentation of this file.
1 
4 struct node {
5  struct list_head head;
6 
7  int id;
8 
10 };
11 
12 extern struct node *cpu_node_create(int id);
13 extern int cpu_node_destroy(struct node *node);
14 extern struct node *cpu_node_find(int id);
15