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
2023-12-14 02:22:17 -05:00

15 lines
344 B
C

#ifndef MODULE_MONITOR_PROC_H
#define MODULE_MONITOR_PROC_H
#define DEFAULT_INTERVAL_NS 10000 // 10us
#define DEFAULT_DUMP_RESET_SEC 10 // 60s
#define DEFAULT_SAMPLE_ALL 0
extern int def_interval_ns;
extern int dump_reset_sec;
extern int sample_all;
int monitor_proc_init(void);
int monitor_proc_exit(void);
#endif // MODULE_MONITOR_PROC_H