Initial commit linux kernel 2.6.33

This commit is contained in:
Angell Fear
2010-09-03 00:00:59 +06:00
commit 464e36dc43
31556 changed files with 12908964 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#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