File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
branches/snap-stage3/src/libstd/sync/mpsc Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 809a554fca2d0ebc2ba50077016fe282a4064752
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 123b5c124e12ba08bd351c414753902aae9eb045
4
+ refs/heads/snap-stage3: 5f57fd591d890cbf9cfc94123071c1a30d809b9e
5
5
refs/heads/try: ce76bff75603a754d092456285ff455eb871633d
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ struct Node<T> {
57
57
/// but it can be safely shared in an Arc if it is guaranteed that there
58
58
/// is only one popper and one pusher touching the queue at any one point in
59
59
/// time.
60
- pub struct Queue < T > {
60
+ pub struct Queue < T : Send > {
61
61
// consumer fields
62
62
tail : UnsafeCell < * mut Node < T > > , // where to pop from
63
63
tail_prev : AtomicPtr < Node < T > > , // where to pop from
You can’t perform that action at this time.
0 commit comments