source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/linux/cache.c@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 361 bytes
Line 
1#include "syscall.h"
2#include "libc.h"
3
4#ifdef SYS_cacheflush
5int _flush_cache(void *addr, int len, int op)
6{
7 return syscall(SYS_cacheflush, addr, len, op);
8}
9weak_alias(_flush_cache, cacheflush);
10#endif
11
12#ifdef SYS_cachectl
13int __cachectl(void *addr, int len, int op)
14{
15 return syscall(SYS_cachectl, addr, len, op);
16}
17weak_alias(__cachectl, cachectl);
18#endif
Note: See TracBrowser for help on using the repository browser.