param.h
来自「Linux内核源代码 为压缩文件 是<<Linux内核>>」· C头文件 代码 · 共 40 行
H
40 行
#ifndef _ASM_IA64_PARAM_H#define _ASM_IA64_PARAM_H/* * Fundamental kernel parameters. * * Copyright (C) 1998, 1999 Hewlett-Packard Co * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com> */#include <linux/config.h>#if defined(CONFIG_IA64_HP_SIM) || defined(CONFIG_IA64_SOFTSDV_HACKS)/* * Yeah, simulating stuff is slow, so let us catch some breath between * timer interrupts... */# define HZ 32#else# define HZ 1024#endif#define EXEC_PAGESIZE 65536#ifndef NGROUPS# define NGROUPS 32#endif#ifndef NOGROUP# define NOGROUP (-1)#endif#define MAXHOSTNAMELEN 64 /* max length of hostname */#ifdef __KERNEL__# define CLOCKS_PER_SEC HZ /* frequency at which times() counts */#endif#endif /* _ASM_IA64_PARAM_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?