You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
324 B
17 lines
324 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_STACKPROTECTOR_H
|
|
#define _LINUX_STACKPROTECTOR_H 1
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/random.h>
|
|
|
|
#ifdef CONFIG_CC_STACKPROTECTOR
|
|
# include <asm/stackprotector.h>
|
|
#else
|
|
static inline void boot_init_stack_canary(void)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|