aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Merge pull request #1140 from jgarzik/sign-compareJeff Garzik2012-04-231-1/+1
|\ \ \ \
| * | | | Add casts for unavoidable signed/unsigned comparisonsJeff Garzik2012-04-231-1/+1
* | | | | Make GetDataDir return absolute pathsPieter Wuille2012-04-221-4/+7
|/ / / /
* | | | Fix bugs on 'unsigned char' platforms.Dwayne C. Litzenberger2012-04-181-4/+4
* | | | Fix phexdigits[255] is undefined.Dwayne C. Litzenberger2012-04-181-1/+1
* | | | Further reduce header dependenciesPieter Wuille2012-04-171-0/+1
* | | | Remove headers.hPieter Wuille2012-04-171-1/+170
* | | | Remove unused and unreachable codeWladimir J. van der Laan2012-04-171-1/+0
* | | | fix warnings: array subscript is of type 'char' [-Wchar-subscripts]Wladimir J. van der Laan2012-04-151-3/+3
* | | | work around issue in boost::program_options that prevents from compiling in c...Wladimir J. van der Laan2012-04-151-0/+11
* | | | Merge pull request #1087 from sipa/fix_1086Gavin Andresen2012-04-121-2/+2
|\ \ \ \
| * | | | Fix #1086: add /testnet to passed datadirPieter Wuille2012-04-131-2/+2
* | | | | Fix OSX build errors.Gavin Andresen2012-04-121-1/+1
|/ / / /
* | | | Use filesystem::path instead of manual string tinkeringPieter Wuille2012-04-111-83/+59
* | | | Remove path.make_preferred() calls, and fix compiler error in bitcoinrpc RE: ...Gavin Andresen2012-04-111-3/+0
* | | | Merge pull request #1054 from sipa/buildinfoPieter Wuille2012-04-101-6/+1
|\ \ \ \
| * | | | Build identification stringsPieter Wuille2012-04-101-6/+1
* | | | | Merge pull request #1052 from sipa/scopedlocksPieter Wuille2012-04-091-12/+12
|\ \ \ \ \
| * | | | | Do not report spurious deadlocks caused by TRY_LOCKPieter Wuille2012-04-091-4/+4
| * | | | | Support for parametrized locks in deadlock detectorPieter Wuille2012-04-091-9/+9
| * | | | | Use scoped locks instead of CRITICAL_BLOCKPieter Wuille2012-04-091-1/+1
| |/ / / /
* / / / / updated util.cpp to use make_preferred()Philip Kaufmann2012-04-061-9/+14
|/ / / /
* | | | Merge pull request #1033 from sipa/waitPieter Wuille2012-04-061-52/+4
|\ \ \ \
| * | | | Locking system overhaul, add condition variablesPieter Wuille2012-04-041-52/+4
* | | | | removed obsolete boost workaround (boost ticket #4258)Philip Kaufmann2012-04-051-10/+0
|/ / / /
* | | | qtui.h/noui.h interface cleanupWladimir J. van der Laan2012-04-041-1/+1
* | | | VC2010 compile fixesWladimir J. van der Laan2012-04-031-4/+4
|/ / /
* | | remove unused functions from util.h/util.cppWladimir J. van der Laan2012-03-251-11/+0
* | | Merge branch '2012_02_getspecialfolderpath_overflow' of https://github.com/la...Gavin Andresen2012-02-281-33/+10
|\ \ \
| * | | Simplify MyGetSpecialFolderPath and fix possible buffer overflow (#901)Wladimir J. van der Laan2012-02-261-33/+10
* | | | Reworked QT settingsGavin Andresen2012-02-261-2/+16
|/ / /
* | | Fix #846. Allow negative options such as "nolisten=1" in bitcoin.conf as wel...Chris Moore2012-02-161-11/+21
* | | Update all copyrights to 2012Gavin Andresen2012-02-071-1/+1
* | | New GetArg features: allow --, and booleans can be -foo or -nofooGavin Andresen2012-02-071-0/+28
* | | Unit tests for the GetArg() methodsGavin Andresen2012-02-071-1/+26
* | | -bip16 option (default: 1) to support / not support BIP 16. And bumped defaul...Gavin Andresen2012-02-061-1/+1
* | | Add DEBUG_LOCKCONTENTION, to warn each time a thread waits to lock.Matt Corallo2012-01-211-1/+22
* | | Replace OP_EVAL (BIP 12) with Pay-to-script-hash (BIP 16).Gavin Andresen2012-01-131-18/+28
* | | Network stack refactorPieter Wuille2012-01-061-3/+3
* | | Fix issue #659, and cleanup wallet/command-line argument handling a bitGavin Andresen2012-01-031-0/+17
* | | Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan2011-12-211-30/+27
* | | Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr2011-12-201-27/+30
* | | Merge pull request #673 from mndrix/less-time-dataGavin Andresen2011-12-201-12/+12
|\ \ \
| * | | Retain only the most recent time samplesMichael Hendricks2011-12-011-10/+7
| * | | Only log time samples in debug modeMichael Hendricks2011-12-011-3/+6
| |/ /
* | | Use std::numeric_limits<> for typesafe INT_MAX/etcGavin Andresen2011-12-191-1/+1
* | | Implement BIP 14 : separate protocol version from client versionGavin Andresen2011-12-191-1/+13
|/ /
* | Fix build on windows and macGavin Andresen2011-10-071-8/+8
* | remove possibility of 63 bit overflow in ParseMoneyWladimir J. van der Laan2011-10-011-1/+1
* | Inline base64 encoder/decoderPieter Wuille2011-09-271-35/+114