1. d3173f3 Refactor many file functions to use FileSpec over strings. by Chaoren Lin · 10 years ago
  2. b30c50c Add a new "qEcho" packet with the following format: by Greg Clayton · 10 years ago
  3. e034a04 Added a new command in ProcessGDBRemote that can figure out the performance characterisitics of your GDB remote server. by Greg Clayton · 10 years ago
  4. 78baa19 Remote Non-Stop Support by Ewan Crawford · 10 years ago
  5. c3c95b2 Adds lldb support for querying the register mapping from gdbserver remote targets using qXfer:features:read packet. Only enabled if libxml2 enabled in build. by Colin Riley · 10 years ago
  6. db264a6 Move several plugin to its own namespace by Tamas Berghammer · 10 years ago
  7. 7cb18bf Fetch module specification from remote process also by Tamas Berghammer · 11 years ago
  8. 30b8cd3 Remove virtual and add override to all virtual functions in Process/gdb-remote. by Tamas Berghammer · 11 years ago
  9. 6801be3 Add qModuleInfo request in order to get module information (uuid, triple,..) by module path from remote platform. by Oleksiy Vyalov · 11 years ago
  10. 568b0de Fix warning that not all control-paths return from function. by Zachary Turner · 11 years ago
  11. e13c273 Separate monolithic GDBRemoteCommunicationServer class into 4 part by Tamas Berghammer · 11 years ago
  12. e0be425 Add support for SBProcess::PutSTDIN to remote processes by Vince Harron · 11 years ago
  13. 1ef7b2c Extend SBPlatform with capability to launch/terminate a process remotely. Integrate this change into test framework in order to spawn processes on a remote target. by Oleksiy Vyalov · 11 years ago
  14. 0be9ebb Add missing switch cases to silence warnings. by Chaoren Lin · 11 years ago
  15. 18fe640 Implement setting and clearing watchpoints. by Chaoren Lin · 11 years ago
  16. d93c4a3 Fix typos. by Bruce Mitchener · 11 years ago
  17. 106d028 Added an option to turn OFF the "detach on error" behavior that was added by Jim Ingham · 11 years ago
  18. 705b180 Initial merge of some of the iOS 8 / Mac OS X Yosemite specific by Jason Molenda · 11 years ago
  19. 9f72b3a Modify debugserver to follow gdb remote $qC protocol definition. by Todd Fiala · 11 years ago
  20. bdc4f12 Add GetxPacketSupported to test if the 'x' packet is supported. by Jason Molenda · 11 years ago
  21. a332978 lldb arm64 import. by Jason Molenda · 11 years ago
  22. 03904ac Add ProcessGDBRemote::GetAuxvData() and fix multiple-packet concatenation for binary data. by Steve Pucci · 12 years ago
  23. 5ae54ae Support for debugging against a remote stock gdbserver. by Steve Pucci · 12 years ago
  24. a6195b7 Fix a bug introduced in asynchronous packet sends. We were not setting the packet result, and so by Jim Ingham · 12 years ago
  25. 3dedae1 Fixed the GDBRemoteCommuncation to return a new GDBRemoteCommuncation::PacketResult enum for all packet sends/receives. by Greg Clayton · 12 years ago
  26. dbf0457 Allow the hostname to be specified when asking a platform to launch another debugserver in case you want to change it. by Greg Clayton · 12 years ago
  27. fb90931 Improved platform support. by Greg Clayton · 12 years ago
  28. fbb7634 Expose SBPlatform through the public API. by Greg Clayton · 12 years ago
  29. f74cf86 <rdar://problem/15172417> by Greg Clayton · 12 years ago
  30. 9ac6d2d <rdar://problem/15263540> by Greg Clayton · 12 years ago
  31. 8960058 <rdar://problem/14146606> by Greg Clayton · 12 years ago
  32. b1de114 Fixed detection of 'p' packet support in debugserver, by Sean Callanan · 12 years ago
  33. 9a78cdf Discover support of 'p' packet. by Hafiz Abid Qadeer · 12 years ago
  34. e0f8f57 merge lldb-platform-work branch (and assorted fixes) into trunk by Daniel Malea · 12 years ago
  35. 7f98240 <rdar://problem/13793059> by Greg Clayton · 12 years ago
  36. acff895 Recommitting r180831 with trivial fix - remember to return errors if you compute. by Jim Ingham · 12 years ago
  37. 54e39db Reverting 180831 as it crashes TestDefaultConstructorForAPIObjects.py by Daniel Malea · 12 years ago
  38. a23f73d Added an option to "process detach" to keep the process stopped, if the process plugin (or in the by Jim Ingham · 12 years ago
  39. e9ca4af Fix a handful of remaining assumptions that thread IDs were 32-bits by Jason Molenda · 13 years ago
  40. 4b6459f <rdar://problem/12976277> by Han Ming Ong · 13 years ago
  41. f17b5ac <rdar://problem/11961650> by Jason Molenda · 13 years ago
  42. 89660bf More Linux warnings fixes (remove default labels as needed): by Daniel Malea · 13 years ago
  43. f402f78 Make sure we always use lldb::tid_t for thread IDs so we don't truncate a 64 bit thread ID. by Greg Clayton · 13 years ago
  44. 279ceec Add a call to "sync" a thread state before checkpointing registers in preparation for by Jim Ingham · 13 years ago
  45. cd16df9 Add "vAttachOrWait" to debugserver, so you can implement "attach to the process if it exists OR wait for it" without race conditions. Use that in lldb. by Jim Ingham · 13 years ago
  46. f04a219 <rdar://problem/11782789> Changes to the watchpoint implementation on ARM so that we single-step before stopping at the WP. This is necessary because on ARM the WP triggers before the opcode is actually executed, so we would be unable to continue since we would keep hitting the WP. We work around this by disabling the WP, single stepping and then putting the WP back in place. by Enrico Granata · 13 years ago
  47. 6463720 Add the capability to display the number of supported hardware watchpoints to the "watchpoint list" command. by Johnny Chen · 13 years ago
  48. 37a0a24 No functionality changes, mostly cleanup. by Greg Clayton · 13 years ago
  49. 4463399 Added a new packet to our GDB remote protocol: by Greg Clayton · 13 years ago
  50. 372787f We sometimes need to be able to call functions (via Process::RunThreadPlan) from code run on the private state thread. To do that we have to by Jim Ingham · 13 years ago
  51. 2687cd1 <rdar://problem/11052174> <rdar://problem/11051056> by Greg Clayton · 14 years ago
  52. 46fb558 Added optional calls to lldb_private::Process for getting memory region info by Greg Clayton · 14 years ago
  53. adc00cb Centralize the code that gathers the thread ID list from the remote GDB by Greg Clayton · 14 years ago
  54. 70b5765 Added the ability to get the return value from a ThreadPlanCallFunction by Greg Clayton · 14 years ago
  55. 2a48f52 Expand the ABI prepare trivial function call to allow 6 simple args. by Greg Clayton · 14 years ago
  56. c4103b3 Fixed not being able to launch the i386 slice of a universal binary by adding by Greg Clayton · 14 years ago
  57. 8b82f08 Moved the execution context that was in the Debugger into by Greg Clayton · 14 years ago
  58. 9b1e1cd Added a speed test to the GDBRemoteCommunicationClient and by Greg Clayton · 14 years ago
  59. 32e0a75 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 14 years ago
  60. e0d378b Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 15 years ago
  61. 1cb6496 Did a lot more work on abtracting and organizing the platforms. by Greg Clayton · 15 years ago
  62. d314e81 Added new platform commands: by Greg Clayton · 15 years ago
  63. 576d883 Split the GDBRemoteCommunication class into three classes: by Greg Clayton · 15 years ago