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

13 lines
292 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-12 11:50:10 +08:00
#define DEFAULT_DUMP_RESET_SEC 60 // 60s
2023-11-27 22:22:30 -05:00
extern int def_interval_ns;
extern int dump_reset_sec;
int monitor_proc_init(void);
int monitor_proc_exit(void);
#endif // MODULE_MONITOR_PROC_H