We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89a8162 commit 688db1dCopy full SHA for 688db1d
src/libstd/thread/mod.rs
@@ -1276,7 +1276,9 @@ impl<T> JoinInner<T> {
1276
#[stable(feature = "rust1", since = "1.0.0")]
1277
pub struct JoinHandle<T>(JoinInner<T>);
1278
1279
+#[stable(feature = "joinhandle_impl_send_sync", since = "1.29.0")]
1280
unsafe impl<T> Send for JoinHandle<T> {}
1281
1282
unsafe impl<T> Sync for JoinHandle<T> {}
1283
1284
impl<T> JoinHandle<T> {
0 commit comments