blob: 1b1e5a69f10beb110803e1527f56d449df64e505 [file] [log] [blame]
Shantappa Teekappanavar1ac61622021-06-22 19:07:29 -05001#pragma once
2
3#include <stdint.h>
4
5/**
6 * @brief Main function to initiate Hostboot dump
7 *
8 */
9
10namespace watchdog
11{
12namespace dump
13{
14
15/**
16 * @brief Initiate Hostboot dump collection
17 *
18 * @param timeout - timeout interval in seconds
19 */
20void triggerHostbootDump(const uint32_t timeout);
21
22} // namespace dump
23} // namespace watchdog