This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-variable-monitor/source/module/monitor_proc.h

15 lines
344 B
C
Raw Normal View History

2023-11-27 22:22:30 -05:00
#ifndef MODULE_MONITOR_PROC_H
#define MODULE_MONITOR_PROC_H
#define DEFAULT_INTERVAL_NS 10000 // 10us
2023-12-14 02:22:17 -05:00
#define DEFAULT_DUMP_RESET_SEC 10 // 60s
#define DEFAULT_SAMPLE_ALL 0
2023-11-27 22:22:30 -05:00
extern int def_interval_ns;
extern int dump_reset_sec;
2023-12-14 02:22:17 -05:00
extern int sample_all;
2023-11-27 22:22:30 -05:00
int monitor_proc_init(void);
int monitor_proc_exit(void);
#endif // MODULE_MONITOR_PROC_H