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 / kallsyms.h
1 /* Rewritten and vastly simplified by Rusty Russell for in-kernel
2  * module loader:
3  *   Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4  */
5 #ifndef _LWK_KALLSYMS_H
6 #define _LWK_KALLSYMS_H
7
8 #define KSYM_NAME_LEN 127
9
10 unsigned long kallsyms_lookup_name(const char *name);
11
12 const char *kallsyms_lookup(unsigned long addr,
13                             unsigned long *symbolsize,
14                             unsigned long *offset,
15                             char *namebuf);
16
17 #endif /* _LWK_KALLSYMS_H */