Open Source
linux.asc
Associated article: Implementing Loadable Kernel Modules for Linux
Tags: Open Source
_IMPLEMENTING LOADABLE KERNEL MODULES FOR LINUX_
by Matt Welsh
Listing One
/* Header for a.out object and executable files. */
struct exec {
unsigned long a_info; /* Describes object file. */
unsigned a_text; /* Length of text segment in bytes */
unsigned a_data; /* ...


