tree: 77f2a9d14edb4ee4f268b2b53e2665281b4dd67c [path history] [tgz]
  1. integration_tests/
  2. meta/
  3. test_data/
  4. agent_configuration.cc
  5. agent_configuration.h
  6. arch.cc
  7. arch.h
  8. arch_arm64.cc
  9. arch_arm64.h
  10. arch_arm64_helpers.cc
  11. arch_arm64_helpers.h
  12. arch_arm64_helpers_unittest.cc
  13. arch_x64.cc
  14. arch_x64.h
  15. arch_x64_helpers.cc
  16. arch_x64_helpers.h
  17. arch_x64_helpers_unittest.cc
  18. binary_launcher.cc
  19. binary_launcher.h
  20. breakpoint.cc
  21. breakpoint.h
  22. breakpoint_unittest.cc
  23. BUILD.gn
  24. component_launcher.cc
  25. component_launcher.h
  26. debug_agent.cc
  27. debug_agent.h
  28. debugged_job.cc
  29. debugged_job.h
  30. debugged_process.cc
  31. debugged_process.h
  32. debugged_thread.cc
  33. debugged_thread.h
  34. debugged_thread_unittest.cc
  35. hardware_breakpoint.cc
  36. hardware_breakpoint.h
  37. main.cc
  38. mock_arch_provider.cc
  39. mock_arch_provider.h
  40. mock_process.cc
  41. mock_process.h
  42. object_util.cc
  43. object_util.h
  44. process_breakpoint.cc
  45. process_breakpoint.h
  46. process_breakpoint_unittest.cc
  47. process_info.cc
  48. process_info.h
  49. process_memory_accessor.h
  50. process_watchpoint.cc
  51. process_watchpoint.h
  52. process_watchpoint_unittest.cc
  53. README.md
  54. remote_api.h
  55. remote_api_adapter.cc
  56. remote_api_adapter.h
  57. software_breakpoint.cc
  58. software_breakpoint.h
  59. system_info.cc
  60. system_info.h
  61. system_info_unittests.cc
  62. unwind.cc
  63. unwind.h
  64. unwind_unittest.cc
  65. watchpoint.cc
  66. watchpoint.h
  67. zxdb_test_app.cc
src/developer/debug/debug_agent/README.md

Debug agent

This is the code for the backend of the Fuchsia debugger. This backend runs on the target Fuchsia computer (Linux or Mac) and talks via IPC (code in ../ipc) to the zxdb frontend (code in ../zxdb) running on the developer's workstation.

User documentation

Please see the debugger setup and usage documentation.