temp save

This commit is contained in:
John Doe
2023-12-01 09:26:42 +00:00
parent fc79e537e2
commit 21862f1271
6 changed files with 45 additions and 8 deletions

View File

@@ -14,7 +14,7 @@
#define PROCESS_CHAINS_COUNT 10 // max count of process chains
#define PROCESS_ARGV_LEN 128 // max length of process argv
#define MAX_NAME_LEN (15) // max name length
#define MAX_NAME_LEN (127) // max name length
#define TIMER_MAX_WATCH_NUM (32) // A timer max watch number at once time
#define DIAG_USER_STACK_SIZE (16 * 1024)
@@ -28,6 +28,7 @@ typedef struct {
char name[MAX_NAME_LEN + 1]; // name
void *ptr; // virtual address
long long threshold; // threshold value
// long long true_value; // target true value
} threshold;
typedef struct {