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 v4.13-rc7 12 lines 366 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 void *p, unsigned int size); 6void kasan_check_write(const void *p, unsigned int size); 7#else 8static inline void kasan_check_read(const void *p, unsigned int size) { } 9static inline void kasan_check_write(const void *p, unsigned int size) { } 10#endif 11 12#endif