| 1 | /* |
| 2 | * CPU watchpoints |
| 3 | * |
| 4 | * Copyright (c) 2012 SUSE LINUX Products GmbH |
| 5 | * SPDX-License-Identifier: LGPL-2.1-or-later |
| 6 | */ |
| 7 | |
| 8 | #ifndef EXEC_WATCHPOINT_H |
| 9 | #define EXEC_WATCHPOINT_H |
| 10 | |
| 11 | int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len, |
| 12 | int flags, CPUWatchpoint **watchpoint); |
| 13 | int cpu_watchpoint_remove(CPUState *cpu, vaddr addr, |
| 14 | vaddr len, int flags); |
| 15 | void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint); |
| 16 | void cpu_watchpoint_remove_all(CPUState *cpu, int mask); |
| 17 | |
| 18 | #endif /* EXEC_WATCHPOINT_H */ |