blob: 9afeb44a13aac1e0de3715569972609bb6afa516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* This file is subject to the terms and conditions of the LGPL V2.1
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2020 Kalray Inc.
*/
#include <sys/syscall.h>
#ifdef __NR_cachectl
# include <sys/cachectl.h>
_syscall4(int, cachectl, void *, addr, size_t, len,
unsigned long, cache, unsigned long, flags)
#endif
|