wasm_debug_engine_create: Remove unused comment (#1416)

This commit is contained in:
YAMAMOTO Takashi 2022-08-25 20:29:26 +09:00 committed by GitHub
parent 903a27aff2
commit 7c75f6cf63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,16 +263,6 @@ wasm_debug_engine_create()
/* reset current instance id */
current_instance_id = 1;
/* TODO: support Wasm platform in LLDB */
/*
engine->control_thread =
wasm_debug_control_thread_create((WASMDebugObject *)engine);
engine->control_thread->debug_engine = (WASMDebugObject *)engine;
engine->control_thread->debug_instance = NULL;
sprintf(engine->control_thread->ip_addr, "127.0.0.1");
engine->control_thread->port = 1234;
*/
bh_list_init(&engine->debug_instance_list);
return engine;
}