forked from steemit/fc
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multithreading improvements #78
Merged
+793
−98
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3131c1d
Implement helper function for real parallel execution
pmconrad 40b2843
Added test case for parallel hashing
pmconrad 6fe8f1d
Added parallel sign/verify test
pmconrad 34a2820
Added warning
pmconrad ef3d365
Removed unused file
pmconrad 9954a37
Added constructor for auto-fulfillment
pmconrad 21724fa
Give asio threads separate names for better debugging
pmconrad 7e8debb
Want to see thread names also in RelWithDebInfo build
pmconrad fa7f6af
Delete broken (wrt fc::current_thread()) move stuff
pmconrad 9d54742
Added a mechanism to get notifications when a thread is idle
pmconrad afcb1e3
Moved do_parallel to fc::thread-based worker pool implementation
pmconrad b0f4e55
--list-content doesnt work properly until boost-1.59
pmconrad e336b0b
Added serial_valve
pmconrad 08a66f5
Add option --pool-threads for easier testing
pmconrad fc61ef3
Improved error handling on thread exit
pmconrad 8eff001
Initialize queues properly
pmconrad d0b280a
Fixed possible deadlock
pmconrad 0186426
Fixed some new code smells
pmconrad 5b99b41
Added missing include
pmconrad ed775a5
Added missing include
pmconrad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added serial_valve
commit e336b0bb5c412c8bd53b665a7a37036e2b290dca
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to include boost/atomic/atomic.hpp to compile in Windows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added, thanks!