-
Notifications
You must be signed in to change notification settings - Fork 2
/
cpu_usage.h
52 lines (44 loc) · 1.12 KB
/
cpu_usage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020-12-04 tyx first implementation
*/
#ifndef __CPU_USAGE_H__
#define __CPU_USAGE_H__
#include "rtthread.h"
#ifdef __cplusplus
extern "C" {
#endif
#define CPU_USAGE_STATE_DEACTIVATED (0x0)
#define CPU_USAGE_STATE_ACTIVATED (0x1)
#define CPU_USAGE_STATE_SUSPEND (0x2)
struct cpu_usage
{
struct rt_timer time; /* Period timer */
rt_uint8_t state; /* Running state */
rt_uint8_t cpus; /* Number of CPUs */
rt_uint16_t reserved;
rt_tick_t suspend_tick; /* CPU suspend timestamp */
rt_tick_t period; /* Stat Period */
struct _idle_stat
{
rt_tick_t idle_tick;
rt_tick_t last_tick;
rt_tick_t load;
rt_thread_t tid;
}
idle_stat[1];
};
typedef struct cpu_usage cpu_usage_t;
int cpu_usage_init(void);
void cpu_usage_deinit(void);
cpu_usage_t *cpu_usage_obj(void);
void cpu_usage_suspend(void);
void cpu_usage_resume(void);
float cpu_load_average(void);
#ifdef __cplusplus
}
#endif
#endif