aboutsummaryrefslogtreecommitdiff
path: root/src/export.rs
diff options
context:
space:
mode:
authorGravatar Per Lindgren <per.lindgren@ltu.se> 2020-10-19 21:00:18 +0200
committerGravatar Per Lindgren <per.lindgren@ltu.se> 2020-10-19 21:00:18 +0200
commit41472032dcb83156b380dd5629898d33398e9604 (patch)
tree42db66dc4ae2b6b8078a1236137a617230be87ab /src/export.rs
parent6de4f1a797c81aec6c24f47872e5d3968344684c (diff)
downloadrtic-async_experiment.tar.gz
rtic-async_experiment.tar.zst
rtic-async_experiment.zip
async haxx (public Priority)async_experiment
Diffstat (limited to 'src/export.rs')
-rw-r--r--src/export.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/export.rs b/src/export.rs
index 72d954ab..29635d15 100644
--- a/src/export.rs
+++ b/src/export.rs
@@ -78,7 +78,7 @@ impl Priority {
///
/// Will overwrite the current Priority
#[inline(always)]
- pub unsafe fn new(value: u8) -> Self {
+ pub const unsafe fn new(value: u8) -> Self {
Priority {
inner: Cell::new(value),
}
@@ -98,6 +98,9 @@ impl Priority {
}
}
+// PER: not sure if this is a problem
+unsafe impl Sync for Priority {}
+
#[inline(always)]
pub fn assert_send<T>()
where