Files
mckernel/test/rusage/verbs/pm_buf.h
Dominique Martinet 7f1c17fc4c tests: add 'postk_master' branch tests
Change-Id: Ie0d4cfd0921aed89d2db6083c9eb068b1cfc1984
2019-02-01 15:15:00 +09:00

17 lines
233 B
C

/*
* 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_ */