17 lines
427 B
C
17 lines
427 B
C
#include "monitor_kallsyms.h"
|
|
#include "monitor_mem.h"
|
|
#include "monitor_timer.h"
|
|
#include "monitor_trace.h"
|
|
|
|
extern mm_tree mm_tree_struct;
|
|
extern struct diag_variant_buffer load_monitor_variant_buffer;
|
|
|
|
int monitor_init(void);
|
|
void monitor_exit(void);
|
|
|
|
int start_watch_variable(watch_arg warg);
|
|
void clear_watch(pid_t pid);
|
|
|
|
enum hrtimer_restart check_variable_cb(struct hrtimer *timer); // callback
|
|
|
|
int diag_test(int nid); |