b.liu | 87afc4c | 2024-08-14 17:33:45 +0800 | [diff] [blame] | 1 | /* |
2 | * instance_info.h | ||||
3 | * | ||||
4 | * Instance monitor service informations. | ||||
5 | * | ||||
6 | * Author : lb | ||||
7 | * Date : 2024/6/12 16:56:22 | ||||
8 | */ | ||||
9 | #ifndef _INSTANCE_INFO_H | ||||
10 | #define _INSTANCE_INFO_H | ||||
11 | #include "mbtk_type.h" | ||||
12 | |||||
13 | #define INSTANCE_NUM_MAX 10 | ||||
14 | |||||
15 | typedef struct { | ||||
16 | char ins_name[64]; | ||||
17 | char ins_cmd[128]; | ||||
18 | int ins_pid; | ||||
19 | } instance_info_t; | ||||
20 | |||||
21 | |||||
22 | |||||
23 | #endif /* _INSTANCE_INFO_H */ |