|
safec
2.1
Safe C Library - ISO TR24731 Bounds Checking Interface
|
#include <linux/module.h>#include <linux/kernel.h>#include "../safeclib/safeclib_private.h"
Include dependency graph for slkm_init.c:Go to the source code of this file.
Macros | |
| #define | DRV_NAME "slk" |
| #define | DRV_VERSION "0.0" |
| #define | DRV_DESCRIPTION "Safe C Library Kernel Module" |
| #define | DRV_COPYRIGHT "Copyright(c) 2012 cisco Systems, Inc." |
Functions | |
| MODULE_DESCRIPTION (DRV_DESCRIPTION) | |
| MODULE_AUTHOR (DRV_COPYRIGHT) | |
| MODULE_LICENSE ("MIT") | |
| MODULE_VERSION (DRV_VERSION) | |
| MODULE_ALIAS ("slk") | |
| static int __init | slk_init (void) |
| Module initialization function. More... | |
| static void __exit | slk_exit (void) |
| Module exit function. More... | |
| module_init (slk_init) | |
| module_exit (slk_exit) | |
| #define DRV_NAME "slk" |
Definition at line 36 of file slkm_init.c.
| #define DRV_VERSION "0.0" |
Definition at line 37 of file slkm_init.c.
| #define DRV_DESCRIPTION "Safe C Library Kernel Module" |
Definition at line 38 of file slkm_init.c.
| #define DRV_COPYRIGHT "Copyright(c) 2012 cisco Systems, Inc." |
Definition at line 39 of file slkm_init.c.
| MODULE_DESCRIPTION | ( | DRV_DESCRIPTION | ) |
| MODULE_AUTHOR | ( | DRV_COPYRIGHT | ) |
| MODULE_LICENSE | ( | "MIT" | ) |
| MODULE_VERSION | ( | DRV_VERSION | ) |
| MODULE_ALIAS | ( | "slk" | ) |
|
static |
Module initialization function.
Definition at line 65 of file slkm_init.c.
|
static |
Module exit function.
Definition at line 77 of file slkm_init.c.
| module_init | ( | slk_init | ) |
| module_exit | ( | slk_exit | ) |