nRF Connect SDK API 3.3.99
Loading...
Searching...
No Matches
system_health.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2025 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
7#ifndef NRF_RPC_SYSTEM_HEALTH_H_
8#define NRF_RPC_SYSTEM_HEALTH_H_
9
10#include <stdint.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
30 uint32_t hung_threads;
31};
32
38
44#ifdef __cplusplus
45}
46#endif
47
48#endif /* NRF_RPC_REMOTE_SHELL_H_ */
void nrf_rpc_system_health_get(struct nrf_rpc_system_health *out)
Get system health information from the remote server.
uint32_t hung_threads
Bitmask of hung threads.
Definition system_health.h:30
System health information.
Definition system_health.h:24