Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
11 lines
202 B
C
11 lines
202 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifndef QEMU_MEM_REENTRANCY_H
|
|
#define QEMU_MEM_REENTRANCY_H 1
|
|
|
|
typedef struct MemReentrancyGuard {
|
|
bool engaged_in_io;
|
|
} MemReentrancyGuard;
|
|
|
|
#endif
|