blob: b31585e23956abb213e65795440f8fb1ab3da17e [file] [log] [blame]
Dhruvaraj Subhashchandran59642e22020-03-19 03:37:44 -05001namespace phosphor
2{
3namespace dump
4{
5namespace host
6{
7
8/**
9 * @brief Initiate offload of the dump with provided id
10 *
11 * @param[in] id - The Dump Source ID.
12 *
13 */
14void requestOffload(uint32_t id);
Ramesh Iyyar22793862020-12-04 04:03:03 -060015
16/**
17 * @brief Request to delete dump
18 *
19 * @param[in] id - The Dump Source ID.
20 * @return NULL
21 *
22 */
23void requestDelete(uint32_t id);
24
Dhruvaraj Subhashchandran59642e22020-03-19 03:37:44 -050025} // namespace host
26} // namespace dump
27} // namespace phosphor