qlmpi: add testcase to qlmpi (rusage for swap)

This commit is contained in:
Ken Sato
2017-08-31 15:43:28 +09:00
parent 4b3f220659
commit f4c32e5507
32 changed files with 2953 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef MM_CORE_H_
#define MM_CORE_H_
#include "mtype.h"
//4kB
#define MIC_PAGE_SIZE 4096
int mm_core_read(addr_t offset, int size, void *buf);
int mm_core_write(addr_t offset, int size, void *buf);
#endif /* MM_CORE_H_ */