J-Alves | a2d1c3b | 2024-03-28 12:46:58 +0000 | [diff] [blame^] | 1 | /* |
2 | * Copyright 2024 The Hafnium Authors. | ||||
3 | * | ||||
4 | * Use of this source code is governed by a BSD-style | ||||
5 | * license that can be found in the LICENSE file or at | ||||
6 | * https://opensource.org/licenses/BSD-3-Clause. | ||||
7 | */ | ||||
8 | |||||
9 | #pragma once | ||||
10 | |||||
11 | void memcpy_trapped_aborted(void); | ||||
12 | bool memcpy_trapped(void *dest, uint64_t dest_size, const void *src, | ||||
13 | uint64_t src_size); | ||||
14 | void memcpy_trapped_read(void); | ||||
15 | void memcpy_trapped_write(void); |