Fix a few redefinition warnings for WAMR_BUILD_DEBUG_INTERP=1 (#1256)

This commit is contained in:
YAMAMOTO Takashi
2022-06-29 13:23:58 +09:00
committed by GitHub
parent a67c1c1c01
commit d5d6b7284d
2 changed files with 6 additions and 6 deletions

View File

@ -50,7 +50,7 @@ typedef struct WASMDebugExecutionMemory {
uint32 current_pos;
} WASMDebugExecutionMemory;
typedef struct WASMDebugInstance {
struct WASMDebugInstance {
struct WASMDebugInstance *next;
WASMDebugControlThread *control_thread;
bh_list break_point_list;
@ -71,7 +71,7 @@ typedef struct WASMDebugInstance {
* during creating debug instance, and use a simple bump pointer allocator
* to serve lldb's memory request */
WASMDebugExecutionMemory exec_mem_info;
} WASMDebugInstance;
};
typedef enum WASMDebugEventKind {
BREAK_POINT_ADD,