bounds.c 600 字节
Newer Older
1 2 3 4 5 6 7 8
/*
 * Generate definitions needed by the preprocessor.
 * This code generates raw asm output which is post-processed
 * to extract and format the required data.
 */

#define __GENERATING_BOUNDS_H
/* Include headers that define the enum constants of interest */
9
#include <linux/page-flags.h>
C
Christoph Lameter 已提交
10
#include <linux/mmzone.h>
11
#include <linux/kbuild.h>
12
#include <linux/page_cgroup.h>
13 14 15

void foo(void)
{
16
	/* The enum constants to put into include/generated/bounds.h */
17
	DEFINE(NR_PAGEFLAGS, __NR_PAGEFLAGS);
C
Christoph Lameter 已提交
18
	DEFINE(MAX_NR_ZONES, __MAX_NR_ZONES);
19
	DEFINE(NR_PCG_FLAGS, __NR_PCG_FLAGS);
20 21
	/* End of constants */
}