-
Notifications
You must be signed in to change notification settings - Fork 514
Add preliminary support for loom #487
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
4756ee1
util/epoch: Add preliminary support for loom
jonhoo 03ed848
Merge branch 'master' into loom
jonhoo ab7ffb0
Rename and document cfg(loom_crossbeam)
jonhoo 617f8a0
Some fixes from review
jonhoo 2fc70c9
Take advantage of const_fn's cfg support
jonhoo e0f59cf
Note about why loom load is different
jonhoo d2360e0
Move Treiber stack entirely to loom test
jonhoo 58a66e4
Make cfg(loom_crossbeam) 'public'
jonhoo f43ff79
Merge branch 'master' into loom
jonhoo 6410c0c
Update crossbeam-epoch/src/atomic.rs
jonhoo 26f2b44
Update crossbeam-utils/Cargo.toml
jonhoo 2b82b8a
Why 2 preemptions?
jonhoo 9f1684b
Rename concurrency module to 'primitive'
jonhoo d3b128c
Merge branch 'master' into loom
jonhoo bcf0c68
Merge branch 'master' into loom
taiki-e 660641c
newline at eol
taiki-e 8638951
remove needless pub(crate)
taiki-e 5d8304d
remove needless #![cfg(not(loom_crossbeam))]
taiki-e 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
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| #!/bin/bash | ||
|
|
||
| cd "$(dirname "$0")"/../crossbeam-epoch | ||
| set -ex | ||
|
|
||
| export RUSTFLAGS="-D warnings --cfg=loom_crossbeam" | ||
|
|
||
| # With MAX_PREEMPTIONS=2 the loom tests (currently) take around 11m. | ||
| # If we were to run with =3, they would take several times that, | ||
| # which is probably too costly for CI. | ||
| env LOOM_MAX_PREEMPTIONS=2 cargo test --test loom --features sanitize --release -- --nocapture | ||
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.