________________________________
From: Sushil, Pant (IE10)
Sent: Thursday, October 04, 2007 11:41 AM
To: [email protected]
Subject: backward compatibility
Given below is code for declaration and export of symbol table of linux
2.0 ,this code is given in ""backward
Compatibility " topic of second chapter(building and running modue) of
rubbini's ldd book.
static struct symbol_table skull_syms = {
#include <linux/symtab_begin.h>
X(skull_fn1),
X(skull_fn2),
X(skull_variable),
#include <linux/symtab_end.h>
};
register_symtab(&skull_syms);
I am not able to understand this code can any one explain me this