1. d55c5b1 Add Android.mk support for building LLDB on Linux host. by Todd Fiala · 11 years ago
  2. a984aa9 Fix bug in Host::getLLDBPath() due to misusing Twine by Daniel Malea · 11 years ago
  3. 7526625 Fix Linux Host::GetCurrentThreadID() to return real tid (not pthread_t). by Michael Sartain · 11 years ago
  4. f476592 Set thread names on FreeBSD by Ed Maste · 11 years ago
  5. 0bbfea6 simple plugin now works with Linux fix assert in SetPluginInfo implement Linux ePathTypeLLDBSystemPlugins and ePathTypeLLDBUserPlugins implement Linux Host::Backtrace and Host::GetEnvironment add .gnu_debugdata comment by Michael Sartain · 11 years ago
  6. f789be4 Missed a checking that should have been checked in with 186211. by Greg Clayton · 11 years ago
  7. 0ba7548 Add support for listing inferior thread names on Linux. by Matt Kopec · 11 years ago
  8. ca14706 Fix build with LLVM_DISABLE_PYTHON by Ed Maste · 11 years ago
  9. efac8e0 Build standalone debug symbol file support on FreeBSD too by Ed Maste · 11 years ago
  10. a807cee Split symbol support for ELF and Linux. by Michael Sartain · 11 years ago
  11. fa2cd91 Following the modification introduced in llvm by commit 185311 by Sylvestre Ledru · 11 years ago
  12. 3f7faa8 Move sys/sysctl.h include after its dependency sys/types.h by Ed Maste · 11 years ago
  13. 750fc7f Correct use of __FreeBSD_kernel__ by Ed Maste · 11 years ago
  14. 1c638ac Don't depend on set being transitively included. by Rafael Espindola · 11 years ago
  15. 99447a6 Update for llvm change. by Rafael Espindola · 11 years ago
  16. 15c1774 Use the global functions instead of the Program methods. by Rafael Espindola · 11 years ago
  17. 884288b Fix various build warnings. by Matt Kopec · 11 years ago
  18. c350e13 Add ability to attach/detach to multi-threaded inferiors on Linux. by Matt Kopec · 11 years ago
  19. 3bd2ebd Adding support for stopping all threads of multithreaded inferiors on Linux. Also adding multithreaded test cases. by Andrew Kaylor · 11 years ago
  20. 1c52f53 Cleaned up the File API a bit. by Greg Clayton · 11 years ago
  21. 0c2921f Fixed a few obvious errors pointed out by the static analyzer. by Jim Ingham · 11 years ago
  22. 9b4c548 Implement "platform process list" on Linux by Daniel Malea · 11 years ago
  23. 780b209 Include also sys/wait.h in the case of a FreeBSD kernel with a glibc (Debian KFreeBSD for example) by Sylvestre Ledru · 11 years ago
  24. 0244977 Add setting of lldb thread names on Linux. by Matt Kopec · 11 years ago
  25. 6c1a8cf Adding support for process attach by pid on Linux. by Andrew Kaylor · 11 years ago
  26. 5581a7e A few small fixes to make things like image list not by Jason Molenda · 11 years ago
  27. 08f60c8 fix a couple of clang static analyzer warnings. by Jason Molenda · 11 years ago
  28. 32657de Build fixes for FreeBSD 9.1. - TODO: Support extended register sets on FreeBSD. by Ashok Thirumurthi · 11 years ago
  29. 30518e0 Don't return a reference to a local variable, and removed a redundant API. by Greg Clayton · 11 years ago
  30. bf1fa97 Add a few new methods to FileSpec to make it a little easier to work by Jason Molenda · 11 years ago
  31. 323c037 <rdar://problem/13209140> by Enrico Granata · 11 years ago
  32. 683cb69 Fixed being able to mmap an entire file by letting the default args "do the right thing". by Greg Clayton · 11 years ago
  33. d387b46 Fixed some linux buildbot warnings. by Greg Clayton · 11 years ago
  34. 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
  35. 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
  36. 6f9236a Change EnumerateDirectory from using readdir() to using readdir_r() by Jason Molenda · 11 years ago
  37. 952e9dc <rdar://problem/13521159> by Greg Clayton · 11 years ago
  38. 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
  39. aebeefd Adding CMake build system to LLDB. Some known issues remain: by Daniel Malea · 11 years ago
  40. 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
  41. 36da2aa <rdar://problem/13069948> by Greg Clayton · 11 years ago
  42. f1fda37 Add initial support to trace spawned threads in a process on Linux. by Matt Kopec · 11 years ago
  43. 21e32a6 Fix lldb -P on Linux by Daniel Malea · 11 years ago
  44. 559bb5c <rdar://problem/12446222> by Enrico Granata · 11 years ago
  45. d35b7b3 More Linux warnings fixes (remove default labels as needed): by Daniel Malea · 12 years ago
  46. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  47. b1087a2 Save and restore terminal state when lldb is suspended with SIGTSTP and resumed with SIGCONT. by Jim Ingham · 12 years ago
  48. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  49. 1245221 Linux fix: remove reference to cellspu (backend removed in llvm r167984) by Daniel Malea · 12 years ago
  50. 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
  51. fb2d05b Caught two cases where we were passing a Stream* without checking for NULL by Enrico Granata · 12 years ago
  52. 42dc5a5 Fixed File::SeekFromEnd() to use SEEK_END insted of SEEK_CUR. by Greg Clayton · 12 years ago
  53. ed0a0fb <rdar://problem/12462048> <rdar://problem/12068650> by Greg Clayton · 12 years ago
  54. 0c8446c <rdar://problem/12462048> by Greg Clayton · 12 years ago
  55. d1f0376 Patch from Andrew Kaylor that centralized where the info for: by Greg Clayton · 12 years ago
  56. 7971a03 Patch from Andrew Kaylor that fixes Linux default host triple values. by Greg Clayton · 12 years ago
  57. ff06724 Patch from Dan Malea to fix a build break I introduced yesterday. by Jason Molenda · 12 years ago
  58. 6d10188 Implementing plugins that provide commands. by Enrico Granata · 12 years ago
  59. b924eb6 Added the ability to download a symboled executable and symbol file given a UUID. by Greg Clayton · 12 years ago
  60. e93725b <rdar://problem/12219840> by Greg Clayton · 12 years ago
  61. 95b765e <rdar://problem/11374963> by Greg Clayton · 12 years ago
  62. 1a450cd Patch from Andrew Kaylor for linux: by Greg Clayton · 12 years ago
  63. 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
  64. 49ce896 <rdar://problem/11757916> by Greg Clayton · 12 years ago
  65. 73844aa Reimplemented the code that backed the "settings" in lldb. There were many issues with the previous implementation: by Greg Clayton · 12 years ago
  66. 67aa5b6 Make glibc and its developers happy. Circumvent the lack of strlcat in glibc. by Filipe Cabecinhas · 12 years ago
  67. 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
  68. 4a379b1 Ran the static analyzer on the codebase and found a few things. by Greg Clayton · 12 years ago
  69. c2775b8 Fixed errors and warnings on debug code. by Filipe Cabecinhas · 12 years ago
  70. 088684d Change the Mutex::Locker class so that it takes the Mutex object and locks it, rather by Jim Ingham · 12 years ago
  71. 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
  72. f42d3f6 We shouldn't save g_dummy_target_sp. Other code will simply call Destroy() on it. by Filipe Cabecinhas · 12 years ago
  73. 469e08d <rdar://problem/11451919> by Greg Clayton · 12 years ago
  74. ca0761b <rdar://problem/11439169> by Greg Clayton · 12 years ago
  75. 5b0025f <rdar://problem/11439022> by Greg Clayton · 12 years ago
  76. 1b584eb Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. by Jim Ingham · 12 years ago
  77. 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
  78. 9747118 Added a new host function that allows us to run shell command and get the output from them along with the status and signal: by Greg Clayton · 12 years ago
  79. 0e82f8e Made sure that the collections of mutexes used in by Sean Callanan · 12 years ago
  80. 9aa4b84 In debug mode, assert if we haven't initialized a mutex we thought we'd initialized. by Jim Ingham · 12 years ago
  81. 92c3b9e Added more complete error checking for mutexes only for "Debug" builds where we always check if a mutex is valid prior to doing stuff with it. We also track when mutexes are initialized and destroyed and keep these in sets that can very subsequent pthread_mutex_XXX API calls. by Greg Clayton · 12 years ago
  82. 516f084 No functionality changes, mostly cleanup. by Greg Clayton · 12 years ago
  83. 621a802 Fix a integer trauction issue - calculating the current time in by Jason Molenda · 12 years ago
  84. 1831e78 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 · 12 years ago
  85. 444fe99 Made a ModuleSpec class in Module.h which can specify a module using one or by Greg Clayton · 12 years ago
  86. d1040dd <rdar://problem/3535148> by Han Ming Ong · 12 years ago
  87. 9ce9538 Full core file support has been added for mach-o core files. by Greg Clayton · 12 years ago
  88. 3a4a75c Fix typo. by Johnny Chen · 12 years ago
  89. 1503c0f Enable extra error checking for debug builds in our mutexes by by Greg Clayton · 12 years ago
  90. 4b23ab3 <rdar://problem/10652336> by Greg Clayton · 12 years ago
  91. df6dc88 Added code in the Host layer that can report system log messages by Greg Clayton · 12 years ago
  92. 2f28ece <rdar://problem/10507811> by Greg Clayton · 12 years ago
  93. c518fe7 Now that I fixed the uninitialized callback problem, I can enable GCD pid by Greg Clayton · 13 years ago
  94. 1c4642c Made the darwin host layer properly reap any child processes that it spawns. by Greg Clayton · 13 years ago
  95. b47c998 Update a missed getHostTriple call, fixes non-__APPLE__ build by Peter Collingbourne · 13 years ago
  96. 06c306c Fix linux build after r143679. by Benjamin Kramer · 13 years ago
  97. 193cc83 Fixed a build issue on an older Xcode. by Greg Clayton · 13 years ago
  98. 3e4238d Fixed the Xcode project building of LLVM to be a bit more user friendly: by Greg Clayton · 13 years ago
  99. 2dc2260 The alpha and system z backends were removed. by Benjamin Kramer · 13 years ago
  100. f35a96c Added a function to the Host that gets a dummy target by Sean Callanan · 13 years ago