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.


Merge branch 'devel'
[palacios.git] / kitten / include / lwk / extable.h
1 #ifndef _LWK_EXTABLE_H
2 #define _LWK_EXTABLE_H
3
4 #include <lwk/init.h>
5 #include <arch/extable.h>
6
7 extern void __init
8 sort_exception_table(void);
9
10 extern const struct exception_table_entry *
11 search_exception_table(unsigned long);
12
13 const struct exception_table_entry *
14 search_extable(const struct exception_table_entry *first,
15                const struct exception_table_entry *last,
16                unsigned long value);
17
18 void
19 sort_extable(struct exception_table_entry *start,
20              struct exception_table_entry *finish);
21
22 #endif