Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 1 | #include <cstdint> |
2 | #include <stdexcept> | ||||
3 | |||||
4 | namespace phosphor | ||||
5 | { | ||||
6 | namespace dump | ||||
7 | { | ||||
8 | namespace host | ||||
9 | { | ||||
Ramesh Iyyar | bb410df | 2020-08-03 03:13:04 -0500 | [diff] [blame^] | 10 | void requestOffload(uint32_t) |
Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 11 | { |
12 | throw std::runtime_error("Hostdump offload method not specified"); | ||||
13 | } | ||||
14 | |||||
15 | } // namespace host | ||||
16 | } // namespace dump | ||||
17 | } // namespace phosphor |