File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,17 +18,17 @@ pub struct TlsEntry<'tcx> {
18
18
/// The data for this key. None is used to represent NULL.
19
19
/// (We normalize this early to avoid having to do a NULL-ptr-test each time we access the data.)
20
20
/// Will eventually become a map from thread IDs to `Scalar`s, if we ever support more than one thread.
21
- pub ( crate ) data : Option < Scalar < Tag > > ,
22
- pub ( crate ) dtor : Option < ty:: Instance < ' tcx > > ,
21
+ data : Option < Scalar < Tag > > ,
22
+ dtor : Option < ty:: Instance < ' tcx > > ,
23
23
}
24
24
25
25
#[ derive( Debug ) ]
26
26
pub struct TlsData < ' tcx > {
27
27
/// The Key to use for the next thread-local allocation.
28
- pub ( crate ) next_key : TlsKey ,
28
+ next_key : TlsKey ,
29
29
30
30
/// pthreads-style thread-local storage.
31
- pub ( crate ) keys : BTreeMap < TlsKey , TlsEntry < ' tcx > > ,
31
+ keys : BTreeMap < TlsKey , TlsEntry < ' tcx > > ,
32
32
}
33
33
34
34
impl < ' tcx > Default for TlsData < ' tcx > {
You can’t perform that action at this time.
0 commit comments