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,16 @@
/*
* pm_buf.h
*
* Created on: 2011/10/21
* Author: simin
*/
#ifndef PM_BUF_H_
#define PM_BUF_H_
struct pm_buf_ops {
void* (*alloc_buf)(int size);
void (*free_buf)(void *buf);
};
#endif /* PM_BUF_H_ */