Skip to content

Commit 1fec8c2

Browse files
committed
Make the Entry API of HashMap<K, V> Sync and Send (fixes #45219)
1 parent 68650ca commit 1fec8c2

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/libstd/collections/hash/map.rs

+10
Original file line numberDiff line numberDiff line change
@@ -2339,6 +2339,11 @@ pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
23392339
elem: FullBucket<K, V, &'a mut RawTable<K, V>>,
23402340
}
23412341

2342+
#[stable(feature = "rust1", since = "1.0.0")]
2343+
unsafe impl<'a, K: 'a + Send, V: 'a + Send> Send for OccupiedEntry<'a, K, V> {}
2344+
#[stable(feature = "rust1", since = "1.0.0")]
2345+
unsafe impl<'a, K: 'a + Sync, V: 'a + Sync> Sync for OccupiedEntry<'a, K, V> {}
2346+
23422347
#[stable(feature= "debug_hash_map", since = "1.12.0")]
23432348
impl<'a, K: 'a + Debug, V: 'a + Debug> Debug for OccupiedEntry<'a, K, V> {
23442349
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
@@ -2360,6 +2365,11 @@ pub struct VacantEntry<'a, K: 'a, V: 'a> {
23602365
elem: VacantEntryState<K, V, &'a mut RawTable<K, V>>,
23612366
}
23622367

2368+
#[stable(feature = "rust1", since = "1.0.0")]
2369+
unsafe impl<'a, K: 'a + Send, V: 'a + Send> Send for VacantEntry<'a, K, V> {}
2370+
#[stable(feature = "rust1", since = "1.0.0")]
2371+
unsafe impl<'a, K: 'a + Sync, V: 'a + Sync> Sync for VacantEntry<'a, K, V> {}
2372+
23632373
#[stable(feature= "debug_hash_map", since = "1.12.0")]
23642374
impl<'a, K: 'a + Debug, V: 'a> Debug for VacantEntry<'a, K, V> {
23652375
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {

src/test/run-pass/threads-sendsync/sync-send-iterators-in-libcollections.rs

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ fn main() {
5353
is_sync_send!(BTreeSet::<usize>::new(), union(&BTreeSet::<usize>::new()));
5454

5555
all_sync_send!(HashMap::<usize, usize>::new(), iter, iter_mut, drain, into_iter, keys, values);
56+
is_sync_send!(HashMap::<usize, usize>::new(), entry(0));
5657
all_sync_send!(HashSet::<usize>::new(), iter, drain, into_iter);
5758
is_sync_send!(HashSet::<usize>::new(), difference(&HashSet::<usize>::new()));
5859
is_sync_send!(HashSet::<usize>::new(), symmetric_difference(&HashSet::<usize>::new()));

0 commit comments

Comments
 (0)