| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | | | | | | Do not report spurious deadlocks caused by TRY_LOCK | Pieter Wuille | 2012-04-09 | 2 | -7/+7 | |
| | | | | | | | | | | ||||||
| | * | | | | | | | | Support for parametrized locks in deadlock detector | Pieter Wuille | 2012-04-09 | 1 | -9/+9 | |
| | | | | | | | | | | ||||||
| | * | | | | | | | | Use scoped locks instead of CRITICAL_BLOCK | Pieter Wuille | 2012-04-09 | 19 | -190/+286 | |
| | | |/ / / / / / | |/| | | | | | | ||||||
| * | | | | | | | | Merge branch 'filesystem' of https://github.com/Diapolo/bitcoin | Gavin Andresen | 2012-04-09 | 3 | -28/+39 | |
| |\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | ||||||
| | * | | | | | | | fixed small error in bitcoinrpc.cpp | Philip Kaufmann | 2012-04-06 | 1 | -2/+2 | |
| | | | | | | | | | ||||||
| | * | | | | | | | updated util.cpp to use make_preferred() | Philip Kaufmann | 2012-04-06 | 1 | -9/+14 | |
| | | | | | | | | | ||||||
| | * | | | | | | | updated bitcoinrpc.cpp to use make_preferred() and removed double inclusion ↵ | Philip Kaufmann | 2012-04-06 | 1 | -13/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of boost/filesystem.hpp | |||||
| | * | | | | | | | updated db.cpp to use make_preferred() | Philip Kaufmann | 2012-04-06 | 1 | -6/+10 | |
| | | | | | | | | | ||||||
| * | | | | | | | | Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs | Luke Dashjr | 2012-04-06 | 14 | -82/+85 | |
| |/ / / / / / / | ||||||
| * | | | | | | | Merge pull request #1033 from sipa/wait | Pieter Wuille | 2012-04-06 | 3 | -122/+132 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Condition variables instead of polling | |||||
| | * | | | | | | | Condition variable for outbound connection slots | Pieter Wuille | 2012-04-04 | 1 | -19/+22 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Keep a global counter for nOutbound, protected with its own waitable critical section, and wait when all outbound slots are filled, rather than polling. This removes the (on average) 1 second delay between a lost connection and a new connection attempt, and may speed up shutdowns. | |||||
| | * | | | | | | | Locking system overhaul, add condition variables | Pieter Wuille | 2012-04-04 | 2 | -103/+110 | |
| | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit simplifies the locking system: CCriticalSection becomes a simple typedef for boost::interprocess::interprocess_recursive_mutex, and CCriticalBlock and CTryCriticalBlock are replaced by a templated CMutexLock, which wraps boost::interprocess::scoped_lock. By making the lock type a template parameter, some critical sections can now be changed to non-recursive locks, which support waiting via condition variables. These are implemented in CWaitableCriticalSection and WAITABLE_CRITICAL_BLOCK. CWaitableCriticalSection is a wrapper for a different Boost mutex, which supports waiting/notification via condition variables. This should enable us to remove much of the used polling code. Important is that this mutex is not recursive, so functions that perform the locking must not call eachother. Because boost::interprocess::scoped_lock does not support assigning and copying, I had to revert to the older CRITICAL_BLOCK macros that use a nested for loop instead of a simple if. | |||||
| * | | | | | | | Change sign message bitcoin address tooltip to "The address to sign the ↵ | graingert | 2012-04-06 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | message with" Closes #1050 | |||||
| * | | | | | | | Flush on log size instead of transaction count | Pieter Wuille | 2012-04-05 | 2 | -10/+2 | |
| | |/ / / / / |/| | | | | | ||||||
| * | | | | | | Merge pull request #1043 from Diapolo/misc | Gavin Andresen | 2012-04-05 | 1 | -10/+0 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | removed obsolete boost workaround (boost ticket #4258) | |||||
| | * | | | | | | removed obsolete boost workaround (boost ticket #4258) | Philip Kaufmann | 2012-04-05 | 1 | -10/+0 | |
| | | | | | | | | ||||||
| * | | | | | | | Merge pull request #1042 from gavinandresen/use_ssl_cleanup | Gavin Andresen | 2012-04-05 | 7 | -44/+5 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Remove USE_SSL #define | |||||
| | * | | | | | | | Remove USE_SSL #define | Gavin Andresen | 2012-04-04 | 7 | -44/+5 | |
| | | |/ / / / / | |/| | | | | | ||||||
| * | | | | | | | Merge pull request #1037 from gavinandresen/addmultisigenable | Gavin Andresen | 2012-04-05 | 1 | -2/+0 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Enable addmultisigaddress RPC call for main network | |||||
| | * | | | | | | | Enable addmultisigaddress RPC call for main network | Gavin Andresen | 2012-04-04 | 1 | -2/+0 | |
| | |/ / / / / / | ||||||
| * | | | | | | | Merge pull request #1036 from gavinandresen/pubsubcleanup | Gavin Andresen | 2012-04-05 | 2 | -167/+0 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Remove half-implemented publish/subscribe system | |||||
| | * | | | | | | | Remove half-implemented publish/subscribe system | Gavin Andresen | 2012-04-04 | 2 | -167/+0 | |
| | |/ / / / / / | ||||||
| * | | | | | | | Merge pull request #1035 from gavinandresen/osxbuild | Gavin Andresen | 2012-04-05 | 1 | -3/+10 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Add ifdef RELEASE to makefile.osx as the compile-for-older-macs flags | |||||
| | * | | | | | | | Add ifdef RELEASE to makefile.osx as the compile-for-older-macs flags | Gavin Andresen | 2012-04-04 | 1 | -3/+10 | |
| | |/ / / / / / | ||||||
| * | | | | | | | Merge pull request #1039 from sipa/fix_955 | Gregory Maxwell | 2012-04-05 | 2 | -10/+18 | |
| |\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | Fix #955: Verify status of encrypt/decrypt calls to detect failed padding | |||||
| | * | | | | | | Verify status of encrypt/decrypt calls to detect failed padding | Pieter Wuille | 2012-04-05 | 2 | -10/+18 | |
| | |/ / / / / | ||||||
| * / / / / / | removed an unused / obsolete tag from bitcoin.qrc | Philip Kaufmann | 2012-04-05 | 1 | -1/+1 | |
| |/ / / / / | ||||||
| * | | | | | Merge pull request #1019 from laanwj/2012_03_uirefactor | Pieter Wuille | 2012-04-04 | 30 | -372/+320 | |
| |\ \ \ \ \ | | | | | | | | | | | | | Streamline UI ↔ Core interface | |||||
| | * | | | | | Move from noui.h / ui.h to one ui_interface.h with dummy implementation for ↵ | Wladimir J. van der Laan | 2012-04-04 | 9 | -89/+61 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | the daemon. | |||||
| | * | | | | | Use a messagebox to display the error when -server is provided without ↵ | Wladimir J. van der Laan | 2012-04-04 | 1 | -8/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | providing a rpc password | |||||
| | * | | | | | qtui.h/noui.h interface cleanup | Wladimir J. van der Laan | 2012-04-04 | 12 | -51/+47 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2 | |||||
| | * | | | | | support RPC stop and encryptwallet with UI | Wladimir J. van der Laan | 2012-04-04 | 5 | -15/+17 | |
| | | | | | | | ||||||
| | * | | | | | move translation function _ to qtui.h/noui.h instead of util.h | Wladimir J. van der Laan | 2012-04-04 | 2 | -7/+5 | |
| | | | | | | | ||||||
| | * | | | | | remove dependency on serialize.h and util.h for SecureString | Wladimir J. van der Laan | 2012-04-04 | 5 | -116/+123 | |
| | | | | | | | ||||||
| | * | | | | | remove unused CalledSetStatusBar and UIThreadCall notifications | Wladimir J. van der Laan | 2012-04-04 | 4 | -25/+0 | |
| | | | | | | | ||||||
| | * | | | | | Update UI through async calls MainFrameRepaint and AddressBookRepaint ↵ | Wladimir J. van der Laan | 2012-04-04 | 13 | -54/+46 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead of a timer. - Overall, this is better design - This fixes problems with the address book UI not updating when the address book is changed through RPC - Move Statusbar change detection responsibility to ClientModel | |||||
| | * | | | | | Code deduplication: make function in GUIUtil to get connection type to call ↵ | Wladimir J. van der Laan | 2012-04-04 | 3 | -18/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | object slot in GUI thread with invokeMethod. | |||||
| | * | | | | | move QT_PLUGINS stuff to qt main file, where it belongs | Wladimir J. van der Laan | 2012-04-04 | 2 | -11/+11 | |
| | |/ / / / | ||||||
| * | | | | | Merge pull request #1025 from Diapolo/GUI-BlockDL | Wladimir J. van der Laan | 2012-04-04 | 1 | -10/+24 | |
| |\ \ \ \ \ | |/ / / / |/| | | | | modified block DL progressbar to be more informative and precise | |||||
| | * | | | | clarified comment why we use an own progressbar style / included "~" in the ↵ | Philip Kaufmann | 2012-04-03 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | | tr() call | |||||
| | * | | | | changed percentage done in tooltip to float to be more precise / allowed ↵ | Philip Kaufmann | 2012-04-03 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | plurals in translation for "x block(s) remaining" | |||||
| | * | | | | polished code and fixed progress display (was very jerky at the end of a sync) | Philip Kaufmann | 2012-04-02 | 1 | -11/+9 | |
| | | | | | | ||||||
| | * | | | | color update for progress bar | Philip Kaufmann | 2012-04-02 | 1 | -1/+1 | |
| | | | | | | ||||||
| | * | | | | implemented OS independent progress bar style / moved one-time functions ↵ | Philip Kaufmann | 2012-04-02 | 1 | -7/+9 | |
| | | | | | | | | | | | | | | | | | | | | | used on the bar to a better code location | |||||
| | * | | | | changed progressbar text to "~n blocks remaining" | Philip Kaufmann | 2012-04-02 | 1 | -5/+8 | |
| | | | | | | ||||||
| | * | | | | removed relative progressbar display and moved re-worked network detection ↵ | Philip Kaufmann | 2012-04-02 | 1 | -22/+13 | |
| | | | | | | | | | | | | | | | | | | | | | code to setNumBlocks() | |||||
| | * | | | | modified block DL progressbar to be dynamic and more precise | Philip Kaufmann | 2012-04-02 | 1 | -8/+27 | |
| | | | | | | ||||||
| * | | | | | VC2010 compile fixes | Wladimir J. van der Laan | 2012-04-03 | 11 | -19/+53 | |
| | | | | | | ||||||
| * | | | | | Merge pull request #1026 from laanwj/2012_04_increase_up_to_date_time | Gregory Maxwell | 2012-04-02 | 1 | -1/+1 | |
| |\ \ \ \ \ | |/ / / / |/| | | | | Increase time ago of last block for "up to date" status from 30 to 90 minutes | |||||
| | * | | | | Increase time ago of last block for "up to date" status from 30 to 90 minutes | Wladimir J. van der Laan | 2012-04-02 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | It was too hyperactive. gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year | |||||