cachectl.c 389 B

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