|
Linux Kernel
3.7.1
|
#include <linux/kernel.h>#include <linux/gfp.h>#include <linux/module.h>#include <linux/init.h>#include <linux/proc_fs.h>#include <linux/seq_file.h>#include <asm/console.h>#include <asm/uaccess.h>#include <asm/machvec.h>Go to the source code of this file.
Data Structures | |
| struct | _srm_env |
Macros | |
| #define | BASE_DIR "srm_environment" /* Subdir in /proc/ */ |
| #define | NAMED_DIR "named_variables" /* Subdir for known variables */ |
| #define | NUMBERED_DIR "numbered_variables" /* Subdir for all variables */ |
| #define | VERSION "0.0.6" /* Module version */ |
| #define | NAME "srm_env" /* Module name */ |
Typedefs | |
| typedef struct _srm_env | srm_env_t |
Functions | |
| MODULE_AUTHOR ("Jan-Benedict Glaw <[email protected]>") | |
| MODULE_DESCRIPTION ("Accessing Alpha SRM environment through procfs interface") | |
| MODULE_LICENSE ("GPL") | |
| module_init (srm_env_init) | |
| module_exit (srm_env_exit) | |
| #define NAMED_DIR "named_variables" /* Subdir for known variables */ |
| #define NUMBERED_DIR "numbered_variables" /* Subdir for all variables */ |
| MODULE_AUTHOR | ( | "Jan-Benedict Glaw <[email protected]>" | ) |
| MODULE_DESCRIPTION | ( | "Accessing Alpha SRM environment through procfs interface" | ) |
| module_exit | ( | srm_env_exit | ) |
| module_init | ( | srm_env_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
1.8.2