1. 3eb2b44 Delete some more dead includes. by Zachary Turner · 9 years ago
  2. c4a3395 Fix a couple of corner cases in NameMatches by Pavel Labath · 9 years ago
  3. d6a2475 Re-add "demonstrate new Args API" by Zachary Turner · 9 years ago
  4. 99a318e Fix build failure on Linux and BSD by reverting r287597 by Omair Javaid · 9 years ago
  5. 1c55c9b Add the new Args / entry-access API. by Zachary Turner · 9 years ago
  6. a47464b Change CreateTarget and dependents to accept StringRef. by Zachary Turner · 9 years ago
  7. 31d97a5 Rewrite all Property related functions in terms of StringRef. by Zachary Turner · 9 years ago
  8. c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
  9. fe11483 Make Options::SetOptionValue take a StringRef. by Zachary Turner · 9 years ago
  10. 6a9767c Clean up the stop printing header lines. by Jim Ingham · 9 years ago
  11. 97d2c40 Convert some Args index-based iteration to range-style iteration. by Zachary Turner · 9 years ago
  12. 7060243 Try to fix build errors on Android. by Zachary Turner · 9 years ago
  13. 1f0f5b5 Convert option tables to ArrayRefs. by Zachary Turner · 9 years ago
  14. ecbb0bb Fix more functions in Args to use StringRef. by Zachary Turner · 9 years ago
  15. b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
  16. ac9c3a6 Tables of command options in LLDB benefit from hand-formatting to make it by Kate Stone · 9 years ago
  17. e1cfbc7 Decoupled Options from CommandInterpreter. by Todd Fiala · 9 years ago
  18. 7428a18 LLDB help content has accumulated over time without a recent attempt to by Kate Stone · 9 years ago
  19. bb19a13 second pass over removal of Mutex and Condition by Saleem Abdulrasool · 9 years ago
  20. 8d94ba0 This change introduces a "ExpressionExecutionThread" to the ThreadList. by Jim Ingham · 10 years ago
  21. 49bcfd8 Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in some files in source/Commands; other minor fixes. by Eugene Zelenko · 10 years ago
  22. 962260c Fix a glitch in the Driver's batch mode when used with "attach". by Jim Ingham · 10 years ago
  23. ccd6cff Modify "platform connect" to connect to processes as well by Tamas Berghammer · 10 years ago
  24. 4fbd67a Add a new option to Platform::LoadImage to install the image by Tamas Berghammer · 10 years ago
  25. 3cb132a Fix "process load/unload" on android by Tamas Berghammer · 10 years ago
  26. 13d21e9 commands: Use override instead of virtual. by Bruce Mitchener · 10 years ago
  27. ea671fb Fixed line wrapping for the "long help" content in LLDB commands. Content is now dynamically wrapped for the column width of the current terminal. Lines that begin with whitespace will be indented identically on subsequent lines to maintain formatting. by Kate Stone · 10 years ago
  28. 98d0a4b Refactor Unix signals. by Chaoren Lin · 10 years ago
  29. 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
  30. 4446487 Improve LLDB prompt handling by Pavel Labath · 10 years ago
  31. e87764f Add support for custom commands to set flags on themselves by Enrico Granata · 10 years ago
  32. b84141a Add real time signals support to LinuxSignals by Pavel Labath · 10 years ago
  33. 8f0db3e Don't call the Process::SyncIOHandler in Target::Launch by Ilia K · 10 years ago
  34. 8980e6b Change process kill to call Process::Destroy (force_kill = true); by Jason Molenda · 10 years ago
  35. ede3193 Add a "force_kill" arg to Process::Destroy(). This is needed after by Jason Molenda · 10 years ago
  36. 93749ab Further reduce the header footprint of Process.h by Zachary Turner · 11 years ago
  37. cc39d3f Fix Arg0 argument after r229110. The problem was that Arg0ValueChangedCallback isn't twitching when Arg0 was updated, therefore target was launched with empty 1st argument or without it at all. In this patch I update Arg0 by hand. by Ilia K · 11 years ago
  38. 8f37ca5 Add -exec-arguments command by Ilia K · 11 years ago
  39. 3738614 Extract attach core logic from SBTarget::Attach* methods into unified SBTarget::AttachToProcess and make it work with platform for remote attach purposes. by Oleksiy Vyalov · 11 years ago
  40. 926af0c Make "process attach" command to support attaching to remote process in case if selected platform allows this. by Oleksiy Vyalov · 11 years ago
  41. 5275aaa Moved Args::StringToXIntYZ to StringConvert::ToXIntYZ by Vince Harron · 11 years ago
  42. f2ef94e Make the platform process connect path less chatty. by Stephane Sezer · 11 years ago
  43. 8012cad Fixed more fallout from running the test suite remotely on iOS devices. by Greg Clayton · 11 years ago
  44. dc6224e Make the "synchronous" mode actually work without race conditions. by Greg Clayton · 11 years ago
  45. 5163792 Adjust process launch --disable-aslr to take true/false value. by Todd Fiala · 11 years ago
  46. a3b89e2 Fix iohandler prompt race condition. by Todd Fiala · 11 years ago
  47. 06357c9 (no commit message) by Greg Clayton · 11 years ago
  48. d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
  49. 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
  50. de963e9 Adds the notion of an OptionValidator. by Zachary Turner · 11 years ago
  51. 106d028 Added an option to turn OFF the "detach on error" behavior that was added by Jim Ingham · 11 years ago
  52. a2715cf Added the ability to save core files: by Greg Clayton · 11 years ago
  53. 6c9ed91 Make the fail messages by Jim Ingham · 12 years ago
  54. e556a42 Stop messages from being emitted out of order when detaching. by Greg Clayton · 12 years ago
  55. 44d9378 Merging the iohandler branch back into main. by Greg Clayton · 12 years ago
  56. b09c538 Centralized the launching of a process into Target::Launch() by Greg Clayton · 12 years ago
  57. 8c8018d Only use a PTY master/slave when launching for local processes. by Greg Clayton · 12 years ago
  58. 9e9919f Allow Process::WaitForProcessToStop to return immediately if process is already in the stopped state by Daniel Malea · 12 years ago
  59. e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
  60. f9b57b9 <rdar://problem/13700260> by Greg Clayton · 12 years ago
  61. acff895 Recommitting r180831 with trivial fix - remember to return errors if you compute. by Jim Ingham · 12 years ago
  62. 54e39db Reverting 180831 as it crashes TestDefaultConstructorForAPIObjects.py by Daniel Malea · 12 years ago
  63. 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
  64. dcb1d85 “process launch” should “detach” not “kill” if the current process was one we attached to. by Jim Ingham · 13 years ago
  65. 0161b49 Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where by Jim Ingham · 13 years ago
  66. c7bece56 <rdar://problem/13069948> by Greg Clayton · 13 years ago
  67. e05b2ef Fixed an issue the "process plugin" proxy object was trying to use the m_exe_ctx when it wasn't ok to do so. by Greg Clayton · 13 years ago
  68. f9fc609 Expanded the flags that can be set for a command object in lldb_private::CommandObject. This list of available flags are: by Greg Clayton · 13 years ago
  69. f00b751 Fix typo in error message (print requested URL instead of command name when plugin missing) by Daniel Malea · 13 years ago
  70. bf4b7be Removed the == and != operators from ArchSpec, since by Sean Callanan · 13 years ago
  71. 93a6430 Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 13 years ago
  72. 3bcdfc0 <rdar://problem/12798131> by Greg Clayton · 13 years ago
  73. d01b295 Resolve printf formatting warnings on Linux: by Daniel Malea · 13 years ago
  74. 3154255 This is a fix for the command option parser. by Sean Callanan · 13 years ago
  75. a0ca660 <rdar://problem/12462048> <rdar://problem/12068650> by Greg Clayton · 13 years ago
  76. 4539255 <rdar://problem/12462048> by Greg Clayton · 13 years ago
  77. 998255b <rdar://problem/12491387> by Greg Clayton · 13 years ago
  78. 4bd4e7e Add support for debugging KASLR kernels via kdp (the kernel being by Jason Molenda · 13 years ago
  79. c1b1f1e <rdar://problem/11374963> by Greg Clayton · 13 years ago
  80. 41f2b94 Fixed a few places where we were doing: by Jim Ingham · 13 years ago
  81. 1f74607 <rdar://problem/11757916> by Greg Clayton · 13 years ago
  82. 67cc063 Reimplemented the code that backed the "settings" in lldb. There were many issues with the previous implementation: by Greg Clayton · 13 years ago
  83. 0e41084 Add an option to "process continue" to ignore the next <N> crossings of the breakpoint under by Jim Ingham · 13 years ago
  84. e9ce62b Use the file completer for "process launch" arguments. <rdar://problem/11274012> by Jim Ingham · 13 years ago
  85. cfc0935 Added an lldb_private & equivalent SB API to send an AsyncInterrupt to the event loop. by Jim Ingham · 13 years ago
  86. 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
  87. 5a98841 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 13 years ago
  88. 4ce37ab Fix a typo for 'waitfor' option help wording. by Johnny Chen · 13 years ago
  89. 5bcaf58 Fixed a missed case in the patch to make by Sean Callanan · 13 years ago
  90. a95ce62 rdar://problem/11457634 by Johnny Chen · 13 years ago
  91. aa73909 rdar://problem/11140741 by Johnny Chen · 13 years ago
  92. 1517dd3 Patch from Viktor Kutuzov: delete the temporary process we created when "process connect" fails. by Greg Clayton · 14 years ago
  93. 4bddaeb Add a general mechanism to wait on the debugger for Broadcasters of a given class/event bit set. by Jim Ingham · 14 years ago
  94. c3776bf First pass at mach-o core file support is in. It currently works for x86_64 by Greg Clayton · 14 years ago
  95. ad9e828 <rdar://problem/10429064> by Greg Clayton · 14 years ago
  96. c982b3d CommandObjectProcess was recently changed to automatically use the platform by Greg Clayton · 14 years ago
  97. 162b597 Save the arguments for a process launch in the target.run-args so they can by Greg Clayton · 14 years ago
  98. ee95ed5 Use a pseudoterminal for local processes if no STDIO redirection or other by Greg Clayton · 14 years ago
  99. 2637f82 Fixed an issue with the pthread_setspecific() where we weren't NULL-ing out by Greg Clayton · 14 years ago
  100. 144f3a9 Added a new class to Process.h: ProcessAttachInfo. This class contains enough by Greg Clayton · 14 years ago