Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
get_kernel_syms(2)
Edit
PageHistory
Diff
Info
LikePages
GET_KERNEL_SYMS !!!GET_KERNEL_SYMS NAME SYNOPSIS DESCRIPTION RETURN VALUE SEE ALSO BUGS ---- !!NAME get_kernel_syms - retrieve exported kernel and module symbols !!SYNOPSIS __#include __''table''__); __ !!DESCRIPTION If ''table'' is __NULL__, __get_kernel_syms__ returns the number of symbols available for query. Otherwise it fills in a table of structures: 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. !!RETURN VALUE Returns the number of symbols returned. There is no possible error return. !!SEE ALSO create_module(2), __init_module__(2), delete_module(2), query_module(2). !!BUGS There is no way to indicate the size of the buffer allocated for ''table''. If symbols have been added to the kernel since the program queried for the symbol table size, memory will be corrupted. The length of exported symbol names is limited to 59. Because of these limitations, this system call is deprecated in favor of __query_module__. ----
One page links to
get_kernel_syms(2)
:
Man2g
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.