12 lines
371 B
C
12 lines
371 B
C
#ifndef __KSU_H_SECCOMP_CACHE
|
|
#define __KSU_H_SECCOMP_CACHE
|
|
|
|
#include <linux/fs.h>
|
|
#include <linux/version.h>
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 2) // Android backport this feature in 5.10.2
|
|
extern void ksu_seccomp_clear_cache(struct seccomp_filter *filter, int nr);
|
|
extern void ksu_seccomp_allow_cache(struct seccomp_filter *filter, int nr);
|
|
#endif
|
|
|
|
#endif |