block.h (21b568350861a2c6eedfef95b70f88faf2fbd32a) block.h (4cc70e933731ebf4309e1f1ce90973a0de04f28f)
1#ifndef BLOCK_H
2#define BLOCK_H
3
4#include "block/aio.h"
5#include "qemu-common.h"
6#include "qemu/option.h"
7#include "block/coroutine.h"
8#include "qapi/qmp/qobject.h"

--- 505 unchanged lines hidden (view full) ---

514 BLKDBG_EVENT_MAX,
515} BlkDebugEvent;
516
517#define BLKDBG_EVENT(bs, evt) bdrv_debug_event(bs, evt)
518void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event);
519
520int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
521 const char *tag);
1#ifndef BLOCK_H
2#define BLOCK_H
3
4#include "block/aio.h"
5#include "qemu-common.h"
6#include "qemu/option.h"
7#include "block/coroutine.h"
8#include "qapi/qmp/qobject.h"

--- 505 unchanged lines hidden (view full) ---

514 BLKDBG_EVENT_MAX,
515} BlkDebugEvent;
516
517#define BLKDBG_EVENT(bs, evt) bdrv_debug_event(bs, evt)
518void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event);
519
520int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
521 const char *tag);
522int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag);
522int bdrv_debug_resume(BlockDriverState *bs, const char *tag);
523bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag);
524
525#endif
523int bdrv_debug_resume(BlockDriverState *bs, const char *tag);
524bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag);
525
526#endif