cacheflush.c 358 B

1234567891011121314
  1. /*
  2. * cacheflush.c - Cache control functions for Blackfin.
  3. *
  4. * Copyright (C) 2010 Analog Devices Inc.
  5. *
  6. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. */
  8. #include <unistd.h>
  9. #include <errno.h>
  10. #include <sys/syscall.h>
  11. #include <sys/cachectl.h>
  12. _syscall3 (int, cacheflush, void *, start, const int, nbytes, const int, flags)