]> git.proxmox.com Git - rustc.git/blame - library/stdarch/crates/core_arch/src/acle/barrier/v8.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / library / stdarch / crates / core_arch / src / acle / barrier / v8.rs
CommitLineData
532ac7d7
XL
1/// Full system is the required shareability domain, reads are the required
2/// access type
3pub struct LD;
4
5dmb_dsb!(LD);
6
7/// Inner Shareable is the required shareability domain, reads are the required
8/// access type
9pub struct ISHLD;
10
11dmb_dsb!(ISHLD);
12
13/// Non-shareable is the required shareability domain, reads are the required
14/// access type
15pub struct NSHLD;
16
17dmb_dsb!(NSHLD);
18
19/// Outher Shareable is the required shareability domain, reads are the required
20/// access type
21pub struct OSHLD;
22
23dmb_dsb!(OSHLD);