forked from OSchip/llvm-project
tsan: use Tid/StackID types in MBlock
Replace more raw types with Tid/StackID typedefs. Reviewed By: melver Differential Revision: https://reviews.llvm.org/D107335
This commit is contained in:
parent
08128fe705
commit
559426ae76
|
@ -184,8 +184,8 @@ class RegionAlloc;
|
|||
struct MBlock {
|
||||
u64 siz : 48;
|
||||
u64 tag : 16;
|
||||
u32 stk;
|
||||
u16 tid;
|
||||
StackID stk;
|
||||
Tid tid;
|
||||
};
|
||||
|
||||
COMPILER_CHECK(sizeof(MBlock) == 16);
|
||||
|
|
Loading…
Reference in New Issue