Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 30c1bbffe629985d86bf68796a224ea4eac2685b 14 lines 402 B view raw
1#ifndef _LINUX_KASAN_CHECKS_H 2#define _LINUX_KASAN_CHECKS_H 3 4#ifdef CONFIG_KASAN 5void kasan_check_read(const volatile void *p, unsigned int size); 6void kasan_check_write(const volatile void *p, unsigned int size); 7#else 8static inline void kasan_check_read(const volatile void *p, unsigned int size) 9{ } 10static inline void kasan_check_write(const volatile void *p, unsigned int size) 11{ } 12#endif 13 14#endif