1. 4135e4c Remove unnecessary in C++11 c_str() calls by Yaron Keren · 10 years ago
  2. 2873810 Rename RunCallBacksToRun to llvm::sys::RunSignalHandlers by Yaron Keren · 10 years ago
  3. 240bd9c De-duplicate Unix & Windows CallBacksToRun by Yaron Keren · 10 years ago
  4. c2bcf15 Remove C++98 workaround in llvm::sys::DontRemoveFileOnSignal() by Yaron Keren · 10 years ago
  5. aed94a0 Use auto instead of the long type name. NFC. by Steven Wu · 10 years ago
  6. 9474669 Fix another hang caused by ManagedStatic in SignalHandler by Steven Wu · 10 years ago
  7. 017ebf0 Fixes a hang that can occur if a signal comes in during malloc calls. by Chris Bieneman · 11 years ago
  8. 6bea2f4 Add boolean to PrintStackTraceOnErrorSignal to disable crash reporting. by Pete Cooper · 11 years ago
  9. cd132c9 Replace PrintStackTrace(FILE*) with PrintStackTrace(raw_ostream&) by Zachary Turner · 11 years ago
  10. 89b0ad2 [Support][Windows] Unify dialog box suppression and print stack traces on abort. by Michael J. Spencer · 11 years ago
  11. c1f3087 Remove FindProgramByName. NFC. by Rafael Espindola · 11 years ago
  12. 7ad2240 Strength reduce constant-sized vectors into arrays. No functionality change. by Benjamin Kramer · 11 years ago
  13. 59fe0d4 Unix/Signals.inc: Let findModulesAndOffsets() built conditionally regarding to (defined(HAVE_BACKTRACE) && defined(ENABLE_BACKTRACES)). [-Wunused-function] by NAKAMURA Takumi · 11 years ago
  14. bc97a4f Guard the definition of the stack tracing function with the same macros by Chandler Carruth · 11 years ago
  15. 96983b8 Follow-up to r219534 to make symbolization more robust. by Alexey Samsonov · 11 years ago
  16. 8a584bb Re-land r219354: Use llvm-symbolizer to symbolize LLVM/Clang crash dumps. by Alexey Samsonov · 11 years ago
  17. afe6707 Revert r219354. It seems to break some buildbots. by Alexey Samsonov · 11 years ago
  18. d88aa97 Use llvm-symbolizer to symbolize LLVM/Clang crash dumps. by Alexey Samsonov · 11 years ago
  19. 186e7d1 Cleaning up remaining static initializers in Signals.inc by Chris Bieneman · 11 years ago
  20. b1cd51e Cleaning up static initializers in Signals.inc by Chris Bieneman · 11 years ago
  21. c4c5180 Support: add llvm::unique_lock by Dylan Noblesmith · 11 years ago
  22. 13044d1c Support: make LLVM Mutexes STL-compatible by Dylan Noblesmith · 11 years ago
  23. 4704ffe Support/Unix: use ScopedLock wherever possible by Dylan Noblesmith · 11 years ago
  24. e73658d [C++] Use 'nullptr'. by Craig Topper · 12 years ago
  25. 502b9e1 Retire llvm::array_endof in favor of non-member std::end. by Benjamin Kramer · 12 years ago
  26. eb6c708 [conf] Add config variable to disable crash related overrides. by Daniel Dunbar · 12 years ago
  27. 26b45c2 Revert part of 186302 to fix buildbots. by Craig Topper · 12 years ago
  28. 5871321 Use llvm::array_lengthof to replace sizeof(array)/sizeof(array[0]). by Craig Topper · 12 years ago
  29. 4f35da7 Don't use PathV1.h in Signals.h. by Rafael Espindola · 12 years ago
  30. 90c9abd by Ulrich Weigand · 13 years ago
  31. 83e2a44 Inline variable into the #ifdef block where it's used. by Benjamin Kramer · 13 years ago
  32. 4474409 Fix typo. Stupid me. by Joerg Sonnenberger · 13 years ago
  33. 6624183 Only use cxxabi.h's demangler, if it is actually available. by Joerg Sonnenberger · 13 years ago
  34. f857cd7 Rewrite comments. by Dan Gohman · 13 years ago
  35. 5cdb345 SIGQUIT is a "kill" signal, rather than an "int" signal, in this context. by Dan Gohman · 13 years ago
  36. 44338e0 Fix gcc/printf/ISO C++ warning by Edwin Vane · 13 years ago
  37. eb9ae76 Move the internal PrintStackTrace function that is used for llvm::sys::PrintStackTraceOnErrorSignal(), by Argyrios Kyrtzidis · 13 years ago
  38. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  39. 511479d Support: Don't remove special files on signals. by Daniel Dunbar · 13 years ago
  40. 5651cbd Make backtraces work again with both the configure and cmake build. by Benjamin Kramer · 13 years ago
  41. 9fafe07 Add an --enable-backtraces option to configure to determine by Eric Christopher · 13 years ago
  42. ffa1571 Whitespace. by NAKAMURA Takumi · 13 years ago
  43. 8a54d81 Unix/Signals.inc: Fix a typo. Thanks to Dani Berg! by NAKAMURA Takumi · 13 years ago
  44. 52de271 Don't call 'FilesToRemove[0]' when the vector is empty, even to compute by Chandler Carruth · 13 years ago
  45. e6196eb Harden the Unix signals code to be more async signal safe. by Chandler Carruth · 13 years ago
  46. a573b22 Fix null to integer conversion warnings. by Jean-Daniel Dupas · 14 years ago
  47. cd8fe08 Disable the crash reporter when running lit tests. by Argyrios Kyrtzidis · 14 years ago
  48. 0e50682 Include <pthread.h> before we use pthread_self/pthread_kill by Douglas Gregor · 15 years ago
  49. 0ab5e2c Fix a ton of comment typos found by codespell. Patch by by Chris Lattner · 15 years ago
  50. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago[Renamed (98%) from llvm/lib/System/Unix/Signals.inc]
  51. cc0e18d CrashRecovery: Fix raise() override to actually send the right signal, *cough*. by Daniel Dunbar · 15 years ago
  52. 18456f3 CrashRecovery/Darwin: Override raise() as well so that crash recovery doesn't by Daniel Dunbar · 15 years ago
  53. e201c07 Add an interface for unregistering a file from the FilesToRemove list. by Dan Gohman · 15 years ago
  54. f14d946 CrashRecovery/Darwin: On Darwin, raise sends a signal to the main thread instead by Daniel Dunbar · 15 years ago
  55. 288999b Factor out the handler work from SignalHandler into a helper function, by Dan Gohman · 15 years ago
  56. 6827256 Add llvm::sys::RunInterruptHandlers(), which runs the registered SIGINT cleanup by Daniel Dunbar · 15 years ago
  57. c4e3f05 Fix a false-positive memory leak in code using RemoveFileOnSignal(). Because by Jeffrey Yasskin · 16 years ago
  58. 3b38fd6 follow-on to PR6280 by Chris Lattner · 16 years ago
  59. 62f50da improve support for minix, PR6280, patch by Kees van Reeuwijk! by Chris Lattner · 16 years ago
  60. b0cad70 Most stack straces don't need 3 digits worth of levels. by Dan Gohman · 16 years ago
  61. 820739d Add locking around signal handler registration. by Owen Anderson · 16 years ago
  62. ce8b7d2 fix PR3965:SIGINT handler not restored after calling ParseAST(), by Chris Lattner · 17 years ago
  63. f2b6065 fix a bug Alexei Svitkine pointed out. by Chris Lattner · 17 years ago
  64. fb95472 When we restore signal handlers, restore them back to what they by Chris Lattner · 17 years ago
  65. f299a68 factorize signal registration, part of PR3848. by Chris Lattner · 17 years ago
  66. bb1ba7b add some explicit llvm:: qualifiers to the unix side, fix problems on the windows side. by Chris Lattner · 17 years ago
  67. 6acb4d6 When a crash signal is delivered do two things: remove all of our by Chris Lattner · 17 years ago
  68. bbbbbf3 move some code to gracefully handle the case when a handler crashes. by Chris Lattner · 17 years ago
  69. 4fdd042 Add a new 'AddSignalHandler' function to Signals.h that allows by Chris Lattner · 17 years ago
  70. 1f517dd Use const, to support platforms where strrchr returns a const char *. by Dan Gohman · 17 years ago
  71. 35e2cfc Don't use plain %x to print pointer values. I had changed it from %p by Dan Gohman · 17 years ago
  72. 7f079aa Demangle and pretty-print symbols in internal backtraces. Patch by by Dan Gohman · 17 years ago
  73. 4e974ab Make PreVerifyID, IntSigsEnd, and KillSigsEnd const. by Dan Gohman · 17 years ago
  74. 86cb318 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 18 years ago
  75. f4bc782 Make several symbols static. by Dan Gohman · 18 years ago
  76. 026eed6 Avoid calling array_endof in a static initializer, as it incurs by Dan Gohman · 18 years ago
  77. eab51d3 It is not safe to call fork in PrintStackTrace. Sometimes it freezes the program. by Lauro Ramos Venancio · 18 years ago
  78. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  79. e2f23a3 Add lengthof and endof templates that hide a lot of sizeof computations. by Owen Anderson · 18 years ago
  80. ceeb918 For PR1291: by Reid Spencer · 19 years ago
  81. 200c6f9 For PR789: by Reid Spencer · 19 years ago
  82. 50eac3b For PR797: by Reid Spencer · 19 years ago
  83. d6f8b1c Remove extraneous #include. by Reid Spencer · 19 years ago
  84. 448e246 Make the removal of files use Path::eraseFromDisk just like it does for by Reid Spencer · 19 years ago
  85. 80df7c4 Use getFileStatus instead of Path::isDirectory(). by Chris Lattner · 19 years ago
  86. 57e8e38 Only print the stack trace if it was requested. Previously, any call into by Reid Spencer · 19 years ago
  87. 6a5d6ec Implement sys::SetInterruptFunction on Unix, stub it on win32 so that the by Chris Lattner · 20 years ago
  88. af48d86 Final Changes For PR495: by Reid Spencer · 20 years ago
  89. c9c0473 For PR495: by Reid Spencer · 20 years ago
  90. 291f6b7 Remove vim settings from source code; people should use llvm/utils/vim/vimrc by Misha Brukman · 21 years ago
  91. 7afc955 Silence gcc-4.0.0 warnings. by Alkis Evlogimenos · 21 years ago
  92. c892a0d Rename Unix/*.cpp and Win32/*.cpp to have a *.inc suffix so that the silly by Reid Spencer · 21 years ago[Renamed from llvm/lib/System/Unix/Signals.cpp]
  93. d554bbc For PR351: * Ensure #includes are wrapped with appropriate HAVE_ guards by Reid Spencer · 21 years ago
  94. 5ccfd5a Path::get -> Path::toString by Reid Spencer · 21 years ago
  95. 26e2bd4 Update for prototype changes by Reid Spencer · 21 years ago
  96. 0c6a283 Stop propagating method names that violate the coding standard by Reid Spencer · 21 years ago
  97. 3d7a614 Initial platform independent implementation of operating system concept by Reid Spencer · 21 years ago