blob: 02bedfb13053f57129fcb3083a43490d6eadb267 [file] [log] [blame]
b.liu717dc082024-06-20 10:51:49 +08001/*
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
15typedef 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 */