diff options
| author | zhangyang <[email protected]> | 2023-11-10 03:49:33 +0000 |
|---|---|---|
| committer | zhangyang <[email protected]> | 2023-11-10 03:49:33 +0000 |
| commit | f4c582f139f0e01039555f3d927ef6b44f7f6a9f (patch) | |
| tree | 273f3f97f0dcfe78c0c07218e82922bd2d1f9599 | |
| parent | 2edb3cda8a29a4f18c50ee4b72e89c2c385be5ad (diff) | |
MAX_TIMER_NUM: 2048 -> 128
| -rw-r--r-- | watch_module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/watch_module.h b/watch_module.h index 9074a72..9720805 100644 --- a/watch_module.h +++ b/watch_module.h @@ -14,7 +14,7 @@ #include <linux/sched/signal.h> #include <linux/stacktrace.h> /* for stack_trace_print */ -#define MAX_TIMER_NUM (2048) // max timer number +#define MAX_TIMER_NUM (128) // max timer number #define TIMER_MAX_WATCH_NUM (32) // A timer max watch number at once time #define MAX_NAME_LEN (15) // max name length typedef struct |
