master
h 10 lines 202 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #ifndef QEMU_MEM_REENTRANCY_H
4 #define QEMU_MEM_REENTRANCY_H 1
5
6 typedef struct MemReentrancyGuard {
7 bool engaged_in_io;
8 } MemReentrancyGuard;
9
10 #endif