123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef _SYS_CACHECTL_H
- #define _SYS_CACHECTL_H 1
- #include <features.h>
- #include <asm/cachectl.h>
- __BEGIN_DECLS
- #ifdef __USE_MISC
- extern int cachectl (void *addr, __const int nbytes, __const int op) __THROW;
- #endif
- extern int __cachectl (void *addr, __const int nbytes, __const int op) __THROW;
- #ifdef __USE_MISC
- extern int cacheflush (void *addr, __const int nbytes, __const int op) __THROW;
- #endif
- extern int _flush_cache (char *addr, __const int nbytes, __const int op) __THROW;
- __END_DECLS
- #endif
|