Description: add posix api header files from musl

CommitID:70a1d0d4761c478b6b33c3eb29af254a445ada74
This commit is contained in:
caoruihong
2021-01-22 16:18:25 +08:00
committed by mamingshuai
parent c3a34f1b79
commit d3e54ea9aa
231 changed files with 19798 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef _SYS_CACHECTL_H
#define _SYS_CACHECTL_H
#ifdef __cplusplus
extern "C" {
#endif
#define ICACHE (1<<0)
#define DCACHE (1<<1)
#define BCACHE (ICACHE|DCACHE)
#define CACHEABLE 0
#define UNCACHEABLE 1
int cachectl(void *, int, int);
int cacheflush(void *, int, int);
int _flush_cache(void *, int, int);
#ifdef __cplusplus
}
#endif
#endif