]> git.proxmox.com Git - rustc.git/blobdiff - library/std/src/sys/unix/thread_local_key.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / library / std / src / sys / unix / thread_local_key.rs
index 2c5b94b1e61e5710717363d92396c6b5e1027305..2b2d079ee4d012730b8324561c78beab7191fda7 100644 (file)
@@ -27,8 +27,3 @@ pub unsafe fn destroy(key: Key) {
     let r = libc::pthread_key_delete(key);
     debug_assert_eq!(r, 0);
 }
-
-#[inline]
-pub fn requires_synchronized_create() -> bool {
-    false
-}