stackprotector.h 321 字节
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
I
Ingo Molnar 已提交
2 3 4
#ifndef _LINUX_STACKPROTECTOR_H
#define _LINUX_STACKPROTECTOR_H 1

5 6 7 8
#include <linux/compiler.h>
#include <linux/sched.h>
#include <linux/random.h>

9
#ifdef CONFIG_STACKPROTECTOR
I
Ingo Molnar 已提交
10
# include <asm/stackprotector.h>
11 12 13 14
#else
static inline void boot_init_stack_canary(void)
{
}
I
Ingo Molnar 已提交
15 16 17
#endif

#endif