blob: a52e73807bbd2bd8389b49e9307b3c456ae1ab52 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _BLOCKDRIVER_DRIVER_MT_H
#define _BLOCKDRIVER_DRIVER_MT_H
/* These functions are used for live update. */
int blockdriver_mt_is_idle(void);
void blockdriver_mt_suspend(void);
void blockdriver_mt_resume(void);
#endif /* !_BLOCKDRIVER_DRIVER_MT_H */
|