awtk/docs/manual/debugger_lldb_t.md
2024-08-08 11:38:38 +08:00

1.5 KiB

debugger_lldb_t

概述

调试器LLDB客户端(使用DAP协议与lldb-vscode连接)。

函数

函数名称 说明
debugger_lldb_create 创建调试器TCP客户端对象。
debugger_lldb_create_ex 创建调试器TCP客户端对象。

debugger_lldb_create 函数


  • 函数功能:

创建调试器TCP客户端对象。

  • 函数原型:
debugger_t* debugger_lldb_create (const char* host, uint32_t port);
  • 参数说明:
参数 类型 说明
返回值 debugger_t* 返回debugger对象。
host const char* 目标主机。
port uint32_t 目标端口。

debugger_lldb_create_ex 函数


  • 函数功能:

创建调试器TCP客户端对象。

  • 函数原型:
debugger_t* debugger_lldb_create_ex (const char* host, uint32_t port, uint32_t timeout);
  • 参数说明:
参数 类型 说明
返回值 debugger_t* 返回debugger对象。
host const char* 目标主机。
port uint32_t 目标端口。
timeout uint32_t 超时时间。