GET_KERNEL_SYMSSection: Linux Module Support (2)Updated: 26 Dec 1996 |
GET_KERNEL_SYMSSection: Linux Module Support (2)Updated: 26 Dec 1996 |
#include <linux/module.h> int get_kernel_syms(struct kernel_sym *table);
struct kernel_sym
{
unsigned long value;
char name[60];
};
The symbols are interspersed with magic symbols of the form #module-name with the kernel having an empty name. The value associated with a symbol of this form is the address at which the module is loaded.
The symbols exported from each module follow their magic module tag and the modules are returned in the reverse order they were loaded.
The length of exported symbol names is limited to 59.
Because of these limitations, this system call is deprecated in favor of query_module.