vvar.c

来自「linux 内核源代码」· C语言 代码 · 共 13 行

C
13
字号
/* Define pointer to external vDSO variables.   These are part of the vDSO. The kernel fills in the real addresses   at boot time. This is done because when the vdso is linked the   kernel isn't yet and we don't know the final addresses. */#include <linux/kernel.h>#include <linux/time.h>#include <asm/vsyscall.h>#include <asm/timex.h>#include <asm/vgtod.h>#define VEXTERN(x) typeof (__ ## x) *const vdso_ ## x = (void *)VMAGIC;#include "vextern.h"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?