1. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  2. 0bce9a2 <rdar://problem/12649160> by Greg Clayton · 12 years ago
  3. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  4. 94a5d0d Change the Thread constructor over to take a Process& rather than a ProcessSP. We can't create Threads with a NULL ProcessSP, so it makes no sense to use the SP. by Jim Ingham · 12 years ago
  5. 3acaa92 <rdar://problem/9959501> by Greg Clayton · 12 years ago
  6. 6b70f03 Remove a duplicate frame_sp local that was shadowing the one we copied the incoming SBFrame into. by Jim Ingham · 12 years ago
  7. be0cde9 SBThread::StepOut and SBThread::StepOutOfFrame should both run all threads. by Jim Ingham · 12 years ago
  8. 52124e7 SBThread::StepOverUntil should run all threads. It is running to breakpoints, so running one thread is likely to cause the target to stall. by Jim Ingham · 12 years ago
  9. f59388a Make the unwinding of the stack part of "thread return" work, and add the thread return command. by Jim Ingham · 12 years ago
  10. a17a81a Start at getting "thread return" working. Doesn't work yet. by Jim Ingham · 12 years ago
  11. d0bdddf Rework how the API mutex is acquired when filling out an ExecutionContext from an ExecutionContextRef, by Jim Ingham · 12 years ago
  12. d82bc6d Found one more place where the OkayToDiscard needs to be consulted. by Jim Ingham · 12 years ago
  13. 88e3de2 Clean up the usage of "MasterPlan" status in ThreadPlans. Only user-initiated plans by Jim Ingham · 12 years ago
  14. 9f3c98e Added logging when API calls try to do something that shouldn't be done when the process is stopped by having logging calls that end with "error: process is running". by Greg Clayton · 12 years ago
  15. a894fe7 Added a new Host class: ReadWriteLock by Greg Clayton · 12 years ago
  16. 9af596d Fixed some space formatting. by Greg Clayton · 12 years ago
  17. 3508c38 <rdar://problem/10103468> by Greg Clayton · 12 years ago
  18. f4124de Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr by Greg Clayton · 12 years ago
  19. 334d33a SBFrame is now threadsafe using some extra tricks. One issue is that stack by Greg Clayton · 12 years ago
  20. 90c5214 Removed the "lldb-forward-rtti.h" header file as it was designed to contain by Greg Clayton · 12 years ago
  21. bcbefa8 Fixed code rot pointed out by Jim. by Johnny Chen · 13 years ago
  22. 1586d97 Add the ability to capture the return value in a thread's stop info, and print it by Jim Ingham · 13 years ago
  23. d9919d3 Process IDs (lldb::pid_t) and thread IDs (lldb::tid_t) are now 64 bit. This by Greg Clayton · 13 years ago
  24. 96154be <rdar://problem/10126482> by Greg Clayton · 13 years ago
  25. 9c23673 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 13 years ago
  26. 444e35b Moved lldb::user_id_t values to be 64 bit. This was going to be needed for by Greg Clayton · 13 years ago
  27. 7e5fa7f Update declarations for all functions/methods that accept printf-style by Jason Molenda · 13 years ago
  28. e40b642 Don't put modules for .o files into the global shared module list. We by Greg Clayton · 13 years ago
  29. fdf24ef Move the SourceManager from the Debugger to the Target. That way it can store the per-Target default Source File & Line. by Jim Ingham · 13 years ago
  30. b07c62a StepUntil should check whether the target of the step until is in the current by Jim Ingham · 13 years ago
  31. 1ebdcc7 Added support for stepping out of a frame. If you have 10 stack frames, and you by Greg Clayton · 14 years ago
  32. f41d4ca Fixed missing return value (patch from Stephen Wilson). by Greg Clayton · 14 years ago
  33. 123db40 Added the following functions to SBThread to allow threads to be suspended when a process is resumed: by Greg Clayton · 14 years ago
  34. bdcda46 The LLDB API (lldb::SB*) is now thread safe! by Greg Clayton · 14 years ago
  35. c5157ec Added access to set the current stack frame within a thread so any command by Greg Clayton · 14 years ago
  36. 640dc6b Added the ability to get more information on the SBThread's stop reason by Greg Clayton · 14 years ago
  37. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  38. 49ce682 Cleaned up the API logging a lot more to reduce redundant information and by Greg Clayton · 14 years ago
  39. 1b28441 Fixed the copy constructor for SBThread. by Greg Clayton · 14 years ago
  40. a66ba46 Improved API logging. by Greg Clayton · 14 years ago
  41. 926060e Add the ability to disable individual log categories, rather by Caroline Tice · 14 years ago
  42. 3f5ee7f Modified the lldb_private::TypeList to use a std::multimap for quicker lookup by Greg Clayton · 14 years ago
  43. 61ba7ec Clean up the API logging code: by Caroline Tice · 14 years ago
  44. 7826c88 First pass at adding logging capabilities for the API functions. At the moment by Caroline Tice · 14 years ago
  45. 6297a3a Don't cache the public stop reason, since it can change as plan completion gets processed. That means GetStopReason needs to return a shared pointer, not a pointer to the thread's cached version. Also allow the thread plans to get and set the thread private stop reason - that is usually more appropriate for the logic the thread plans need to do. by Jim Ingham · 14 years ago
  46. d8c6253 Cleaned up the SWIG stuff so all includes happen as they should, no pulling by Greg Clayton · 14 years ago
  47. 1a3083a Added the first of hopefully many python example scripts that show how to by Greg Clayton · 14 years ago
  48. 5c4c746 Added the ability to get the disassembly instructions from the function and by Greg Clayton · 14 years ago
  49. a830adb There are now to new "settings set" variables that live in each debugger by Greg Clayton · 14 years ago
  50. e49ec18 Remove all the __repr__ methods from the API/*.h files, and put them by Caroline Tice · 14 years ago
  51. 98f930f by Caroline Tice · 14 years ago
  52. dfc91c3 Remove unnecessary/inappropriate output-printing functions from the API. by Caroline Tice · 14 years ago
  53. 72b7158 Added a new bool parameter to many of the DumpStopContext() methods that by Greg Clayton · 14 years ago
  54. c833295 Change "Current" as in GetCurrentThread, GetCurrentStackFrame, etc, to "Selected" i.e. GetSelectedThread. Selected makes more sense, since these are set by some user action (a selection). I didn't change "CurrentProcess" since this is always controlled by the target, and a given target can only have one process, so it really can't be selected. by Jim Ingham · 14 years ago
  55. 33ed170 Added support for inlined stack frames being represented as real stack frames by Greg Clayton · 14 years ago
  56. 643ee73 Abtracted the old "lldb_private::Thread::StopInfo" into an abtract class. by Greg Clayton · 14 years ago
  57. 43490d1 Added "void Clear();" methods to SBDebugger, SBTarget and SBThread so they can release their shared pointers. by Greg Clayton · 14 years ago
  58. bef1583 I enabled some extra warnings for hidden local variables and for hidden by Greg Clayton · 14 years ago
  59. 0a164a1 Misc warning fixes. by Eli Friedman · 14 years ago
  60. 54e7afa Merged Eli Friedman's linux build changes where he added Makefile files that by Greg Clayton · 14 years ago
  61. 63094e0 Very large changes that were needed in order to allow multiple connections by Greg Clayton · 14 years ago
  62. 5a47e8b Two changes in this checkin. Added a ThreadPlanKind so that I can do some reasoning based on the kind of thread plan by Jim Ingham · 14 years ago
  63. 8f5fd6b I have eliminated RTTI from LLDB! by Greg Clayton · 14 years ago
  64. 7a62c8b And some more include line fixes. by Eli Friedman · 14 years ago
  65. 24943d2 Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 14 years ago