1234567891011121314151617181920212223242526 |
- #include <errno.h>
- #include <unistd.h>
- #include <sys/syscall.h>
- _syscall3(int, cacheflush, void *, addr, const int, nbytes, const int, op);
- weak_alias(cacheflush, _flush_cache)
- _syscall3(int, cachectl, void *, addr, const int, nbytes, const int, op);
|