File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 3
3
use crate :: collections:: BTreeMap ;
4
4
use crate :: ptr;
5
5
use crate :: sync:: atomic:: { AtomicUsize , Ordering } ;
6
+ use crate :: sys_common:: mutex:: Mutex ;
6
7
7
8
pub type Key = usize ;
8
9
@@ -11,6 +12,7 @@ type Dtor = unsafe extern fn(*mut u8);
11
12
static NEXT_KEY : AtomicUsize = AtomicUsize :: new ( 0 ) ;
12
13
13
14
static mut KEYS : * mut BTreeMap < Key , Option < Dtor > > = ptr:: null_mut ( ) ;
15
+ static KEYS_LOCK : Mutex = Mutex :: new ( ) ;
14
16
15
17
#[ thread_local]
16
18
static mut LOCALS : * mut BTreeMap < Key , * mut u8 > = ptr:: null_mut ( ) ;
@@ -32,6 +34,7 @@ unsafe fn locals() -> &'static mut BTreeMap<Key, *mut u8> {
32
34
#[ inline]
33
35
pub unsafe fn create ( dtor : Option < Dtor > ) -> Key {
34
36
let key = NEXT_KEY . fetch_add ( 1 , Ordering :: SeqCst ) ;
37
+ let _guard = KEYS_LOCK . lock ( ) ;
35
38
keys ( ) . insert ( key, dtor) ;
36
39
key
37
40
}
You can’t perform that action at this time.
0 commit comments