1. 6c1a8cf Adding support for process attach by pid on Linux. by Andrew Kaylor · 11 years ago
  2. 5581a7e A few small fixes to make things like image list not by Jason Molenda · 11 years ago
  3. 08f60c8 fix a couple of clang static analyzer warnings. by Jason Molenda · 11 years ago
  4. 42b336c Remove the UUID::GetAsCString() method which required a buffer to save the by Jason Molenda · 11 years ago
  5. 32657de Build fixes for FreeBSD 9.1. - TODO: Support extended register sets on FreeBSD. by Ashok Thirumurthi · 11 years ago
  6. 97a19b2 Cleanup logging to use the new "std::string FileSpec::GetPath()" function. Also added a similar function for modules: by Greg Clayton · 11 years ago
  7. 30518e0 Don't return a reference to a local variable, and removed a redundant API. by Greg Clayton · 11 years ago
  8. bf1fa97 Add a few new methods to FileSpec to make it a little easier to work by Jason Molenda · 11 years ago
  9. aad68fa More CMake fixes for OS X. by Filipe Cabecinhas · 11 years ago
  10. 323c037 <rdar://problem/13209140> by Enrico Granata · 11 years ago
  11. b07f8de <rdar://problem/13665446> by Greg Clayton · 11 years ago
  12. 683cb69 Fixed being able to mmap an entire file by letting the default args "do the right thing". by Greg Clayton · 11 years ago
  13. d387b46 Fixed some linux buildbot warnings. by Greg Clayton · 11 years ago
  14. 102b2c2 After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11. by Greg Clayton · 11 years ago
  15. 81a96aa Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++. by Greg Clayton · 11 years ago
  16. 6f9236a Change EnumerateDirectory from using readdir() to using readdir_r() by Jason Molenda · 11 years ago
  17. 952e9dc <rdar://problem/13521159> by Greg Clayton · 11 years ago
  18. f5af85a Initial checkin of a new project: LLDB Performance Testing Infrastructure by Enrico Granata · 11 years ago
  19. 6778c99 Updated Apple LLDB version to lldb-300.99.0. Also by Sean Callanan · 11 years ago
  20. e3ee59b <rdar://problem/13119170> by Han Ming Ong · 11 years ago
  21. 6f0165b Fixed a case where the result of std::string's c_str() method was being called on a local variable and returned as a const char * incorrectly. We used to cache the thread names for threads in the current host process, but we shoudn't be caching that as the names can change over time, so now a std::string is returned from Host::GetThreadName(). by Greg Clayton · 11 years ago
  22. aebeefd Adding CMake build system to LLDB. Some known issues remain: by Daniel Malea · 11 years ago
  23. 132c49a Added a host call to get the number of CPUs. It should work on all POSIX unixes, linux and Windows. by Greg Clayton · 11 years ago
  24. 50972ae Fixed a crash when we didn't get a plist but tried by Sean Callanan · 11 years ago
  25. 2ddb2b8 <rdar://problem/13092722> by Greg Clayton · 11 years ago
  26. 36da2aa <rdar://problem/13069948> by Greg Clayton · 11 years ago
  27. f1fda37 Add initial support to trace spawned threads in a process on Linux. by Matt Kopec · 12 years ago
  28. 21e32a6 Fix lldb -P on Linux by Daniel Malea · 12 years ago
  29. 64246cd Fixed a bug where we could accept the wrong by Sean Callanan · 12 years ago
  30. 559bb5c <rdar://problem/12446222> by Enrico Granata · 12 years ago
  31. 878f13c Fixed two conditionals that I accidentally reversed in r170152. by Sean Callanan · 12 years ago
  32. 40e278c Removed the == and != operators from ArchSpec, since by Sean Callanan · 12 years ago
  33. 6fca4f5 Removed debugging code. by Han Ming Ong · 12 years ago
  34. 832b5d1 <rdar://problem/12850287> by Han Ming Ong · 12 years ago
  35. d35b7b3 More Linux warnings fixes (remove default labels as needed): by Daniel Malea · 12 years ago
  36. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  37. b1087a2 Save and restore terminal state when lldb is suspended with SIGTSTP and resumed with SIGCONT. by Jim Ingham · 12 years ago
  38. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  39. 1245221 Linux fix: remove reference to cellspu (backend removed in llvm r167984) by Daniel Malea · 12 years ago
  40. 9b8550e Fix a little think-o. In FileSpec::operator== we were trying to figure out whether the rhs file was resolved or not by comparing by Jim Ingham · 12 years ago
  41. fb2d05b Caught two cases where we were passing a Stream* without checking for NULL by Enrico Granata · 12 years ago
  42. f256975 Change the MacOSX Symbols::DownloadObjectAndSymbolFile to look up by Jason Molenda · 12 years ago
  43. 42dc5a5 Fixed File::SeekFromEnd() to use SEEK_END insted of SEEK_CUR. by Greg Clayton · 12 years ago
  44. ed0a0fb <rdar://problem/12462048> <rdar://problem/12068650> by Greg Clayton · 12 years ago
  45. 0c8446c <rdar://problem/12462048> by Greg Clayton · 12 years ago
  46. d1f0376 Patch from Andrew Kaylor that centralized where the info for: by Greg Clayton · 12 years ago
  47. 7971a03 Patch from Andrew Kaylor that fixes Linux default host triple values. by Greg Clayton · 12 years ago
  48. ff06724 Patch from Dan Malea to fix a build break I introduced yesterday. by Jason Molenda · 12 years ago
  49. d6d45ce Add a parameter to Symbols::DownloadObjectAndSymbolFile() to control by Jason Molenda · 12 years ago
  50. 1b09dfe Symbols::LocateMacOSXFilesUsingDebugSymbols() - perform tilde by Jason Molenda · 12 years ago
  51. 63e5cf6 Change DynamicLoaderDarwinKernel::OSKextLoadedKextSummary to use by Jason Molenda · 12 years ago
  52. 6d10188 Implementing plugins that provide commands. by Enrico Granata · 12 years ago
  53. 437b5bc Wrapped up the work I am going to do for now for the "add-dsym" or "target symfile add" command. by Greg Clayton · 12 years ago
  54. b924eb6 Added the ability to download a symboled executable and symbol file given a UUID. by Greg Clayton · 12 years ago
  55. b0d2027 Bump to lldb-168, debugserver-193. by Jason Molenda · 12 years ago
  56. e93725b <rdar://problem/12219840> by Greg Clayton · 12 years ago
  57. 851e30e Stop using the "%z" size_t modifier and cast all size_t values to uint64_t. Some platforms don't support this modification. by Greg Clayton · 12 years ago
  58. 92cb9a9 <rdar://problem/11374963> by Greg Clayton · 12 years ago
  59. 95b765e <rdar://problem/11374963> by Greg Clayton · 12 years ago
  60. f993558 Some more typing-related fixes. by Filipe Cabecinhas · 12 years ago
  61. 1a450cd Patch from Andrew Kaylor for linux: by Greg Clayton · 12 years ago
  62. fc04d24 OptionValueFileSpec had an accessor to read the contents of the file and return the data. This can end up being used to get the string contents of a text file and could end up not being NULL terminated. I added accessors to get the file contents raw, or with a null terminator. Added the needed calls to make this happen in the FileSpec and File classes. by Greg Clayton · 12 years ago
  63. 49ce896 <rdar://problem/11757916> by Greg Clayton · 12 years ago
  64. 73844aa Reimplemented the code that backed the "settings" in lldb. There were many issues with the previous implementation: by Greg Clayton · 12 years ago
  65. 9262cd5 rdar://problem/11324515 by Johnny Chen · 12 years ago
  66. e662457 Updating Xcode project version numbers for lldb-165 and debugserver-192 by Sean Callanan · 12 years ago
  67. 6f72da8 Updating Xcode project version numbers for lldb-164 and debugserver-191 by Sean Callanan · 12 years ago
  68. 67aa5b6 Make glibc and its developers happy. Circumvent the lack of strlcat in glibc. by Filipe Cabecinhas · 12 years ago
  69. df80272 Fixed ePathTypePythonDir for Linux and FreeBSD (at least). This works for non-installed compilations. I will test further. by Filipe Cabecinhas · 12 years ago
  70. a0b1450 Updating Xcode project version numbers for lldb-163 and debugserver-190 by Sean Callanan · 12 years ago
  71. b2b6d03 Call "drain" on the auto release pool as it will do the right thing for both GC and non-GC apps. It will also quiet the static analyzer. by Greg Clayton · 12 years ago
  72. 4a379b1 Ran the static analyzer on the codebase and found a few things. by Greg Clayton · 12 years ago
  73. e9d2ca1 Bump to lldb-162 / debugserver-189. by Jason Molenda · 12 years ago
  74. 4d8c543 Resolve source paths that start with ~ when doing substitutions. by Greg Clayton · 12 years ago
  75. 352f3cd Unify how we get host version on Mac OS X & iOS. by Jim Ingham · 12 years ago
  76. a9dd2a0 Provide more information when process launch can't change directory to the by Filipe Cabecinhas · 12 years ago
  77. c2775b8 Fixed errors and warnings on debug code. by Filipe Cabecinhas · 12 years ago
  78. 1f6d04b Bump versions to lldb-161, debugserver-188. by Jason Molenda · 12 years ago
  79. 5bec0ae Bump version number to lldb-160. by Jason Molenda · 12 years ago
  80. 088684d Change the Mutex::Locker class so that it takes the Mutex object and locks it, rather by Jim Ingham · 12 years ago
  81. b7b2532 When the Platform launches a process for debugging, make sure it goes into a separate process group, otherwise ^C will both cause us to try to Stop it manually, AND send it a SIGINT, which can confuse us. by Jim Ingham · 12 years ago
  82. 4ae7823 Bump to lldb 152. by Jason Molenda · 12 years ago
  83. f7d782b Fixes the case where we created a dummy target, deleted it, and then tried to evaluate an expression with no target. by Filipe Cabecinhas · 12 years ago
  84. 8967a8f bump to lldb-150. by Jason Molenda · 12 years ago
  85. 2e4ca56 bump to lldb 149. by Jason Molenda · 12 years ago
  86. bb55057 <rdar://11477301> by Han Ming Ong · 12 years ago
  87. f42d3f6 We shouldn't save g_dummy_target_sp. Other code will simply call Destroy() on it. by Filipe Cabecinhas · 12 years ago
  88. 0578f45 Bump to version 148. by Jason Molenda · 12 years ago
  89. a6909bd Bump version # to lldb-147. by Jason Molenda · 12 years ago
  90. 469e08d <rdar://problem/11451919> by Greg Clayton · 12 years ago
  91. ca0761b <rdar://problem/11439169> by Greg Clayton · 12 years ago
  92. 5b0025f <rdar://problem/11439022> by Greg Clayton · 12 years ago
  93. da23dff <rdar://problem/11400476> by Han Ming Ong · 12 years ago
  94. 79a5926 <rdar://problem/11408853> by Han Ming Ong · 12 years ago
  95. 1ccfba6 bump TOT version number to lldb-146 to match the checkin on the branch. by Jason Molenda · 12 years ago
  96. 78c180a Fixed some strncat/strlcat uses. by Filipe Cabecinhas · 12 years ago
  97. 1b584eb Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. by Jim Ingham · 12 years ago
  98. 35dd496 Fix a think in Mutex::Locker::Locker(pthread_mutex_t *) Really should lock the mutex handed in, not the m_mutex_ptr that you've set to NULL... by Jim Ingham · 12 years ago
  99. fbbede5 Bump to lldb-145. by Jason Molenda · 12 years ago
  100. b11f4a0 Bump to lldb-144. by Jason Molenda · 12 years ago