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