Messages in this thread Patch in this message |  | | Date | Fri, 04 Apr 2008 21:22:45 +0900 | From | Tetsuo Handa <> | Subject | [TOMOYO #7 03/30] Constants for /proc/ccs/ interface. |
| |
This file defines constants for /proc/ccs/ interface.
Signed-off-by: Kentaro Takeda <takedakn@nttdata.co.jp> Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: Toshiharu Harada <haradats@nttdata.co.jp> --- include/linux/ccs_proc.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+)
--- /dev/null +++ linux-2.6.25-rc8-mm1/include/linux/ccs_proc.h @@ -0,0 +1,31 @@ +/* + * include/linux/ccs_proc.h + * + * /proc/ccs/ interface for SAKURA and TOMOYO. + * + * Copyright (C) 2005-2008 NTT DATA CORPORATION + * + * Version: 1.6.0 2008/04/01 + * + */ + +#ifndef _LINUX_CCS_PROC_H +#define _LINUX_CCS_PROC_H + +/* Indexes for /proc/ccs/ interfaces. */ +#define CCS_DOMAINPOLICY 0 +#define CCS_EXCEPTIONPOLICY 1 +#define CCS_SYSTEMPOLICY 2 +#define CCS_DOMAIN_STATUS 3 +#define CCS_PROCESS_STATUS 4 +#define CCS_MEMINFO 5 +#define CCS_GRANTLOG 6 +#define CCS_REJECTLOG 7 +#define CCS_SELFDOMAIN 8 +#define CCS_VERSION 9 +#define CCS_PROFILE 10 +#define CCS_QUERY 11 +#define CCS_MANAGER 12 +#define CCS_UPDATESCOUNTER 13 + +#endif --
|  |