Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-13 | Bump copyright headers to 2015 | MarcoFalke | |
2015-08-07 | Revert "Revert "Assert on probable deadlocks if the second lock isnt try_lock"" | Cory Fields | |
This reverts commit a4fe57da6207c1e5691a1e843d22db571f3f0186. The issue here should be fixed by the previous commit. | |||
2015-08-06 | Revert "Assert on probable deadlocks if the second lock isnt try_lock" | Wladimir J. van der Laan | |
Disabling this for now - too many intermittent Travis issues. This reverts commit 0fcc4e1e04082daf6e97e05bfb26e4b94e54ea53 (pull #5515). | |||
2015-07-22 | Assert on probable deadlocks if the second lock isnt try_lock | Matt Corallo | |
2015-04-24 | Remove broken+useless lock/unlock log prints | Matt Corallo | |
2014-12-19 | Added "Core" to copyright headers | sandakersmann | |
Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | |||
2014-12-16 | Remove references to X11 licence | Michael Ford | |
2014-09-19 | Apply clang-format on some infrequently-updated files | Pieter Wuille | |
2014-09-14 | header include cleanup | Philip Kaufmann | |
- ensures alphabetical ordering for includes etc. in source file headers | |||
2014-08-28 | Fix build with DEBUG_LOCKORDER | Wladimir J. van der Laan | |
Fixes #4771 | |||
2014-02-18 | Wallet locking fixes for -DDEBUG_LOCKORDER | Gavin Andresen | |
Compiling with -DDEBUG_LOCKORDER and running the qa/rpc-test/ regression tests uncovered a couple of wallet methods that should (but didn't) acquire the cs_wallet mutext. I also changed the AssertLockHeld() routine print to stderr and abort, instead of printing to debug.log and then assert()'ing. It is annoying to look in debug.log to find out which AssertLockHeld is failing. | |||
2014-01-23 | Remove redundant .c_str()s | Wladimir J. van der Laan | |
After the tinyformat switch sprintf() family functions support passing actual std::string objects. Remove unnecessary c_str calls (236 of them) in logging and formatting. | |||
2013-12-19 | Use mutex pointer instead of name for AssertLockHeld | Wladimir J. van der Laan | |
This makes it useable for non-global locks such as the wallet and keystore locks. | |||
2013-11-29 | mutex debugging routines: LocksHeld() and AssertLockHeld() | Gavin Andresen | |
2013-11-10 | Cleanup code using forward declarations. | Brandon Dahler | |
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files. | |||
2013-10-20 | Make -DDEBUGLOCKORDER + -debug less noisy | Gavin Andresen | |
Print out every mutex lock/unlock if compiled -DDEBUGLOCKORDER only if -debug=lock is set. | |||
2013-09-18 | Replace printf with LogPrintf / LogPrint | Gavin Andresen | |
2012-09-18 | Trim trailing whitespace for src/*.{h,cpp} | Jeff Garzik | |
2012-06-29 | Fix a few typos | fanquake | |
2012-06-05 | Fix DEBUG_LOCKCONTENTION | Matt Corallo | |
2012-05-20 | Merge pull request #1354 from fanquake/master | Pieter Wuille | |
Update Header Licenses | |||
2012-05-18 | Use boost::thread locking instead of interprocess | Pieter Wuille | |
2012-05-18 | Update License in File Headers | Fordy | |
I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file. | |||
2012-05-11 | Split synchronization mechanisms from util.{h,cpp} | Pieter Wuille | |