syscalls: Add system call for cache flush & invalidate

include/cache.h: System calls declaration and implementation
kernel/cache_handlers.c: Defination of verification functions

Signed-off-by: Aastha Grover <aastha.grover@intel.com>
This commit is contained in:
Aastha Grover 2020-07-16 12:32:24 -07:00 committed by Anas Nashif
commit 2d9b459f15
3 changed files with 30 additions and 2 deletions

View file

@ -56,6 +56,7 @@ target_sources_ifdef(
kernel PRIVATE
futex.c
mem_domain.c
cache_handlers.c
userspace_handler.c
userspace.c
)