aboutsummaryrefslogtreecommitdiff
path: root/macros/src/syntax/ast.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2023-01-07 13:23:20 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:31:06 +0100
commitfe2b5cc52ee634346bc8aecf5041b6af9fdea529 (patch)
tree0e38042e603ee2ff445e4abd1e85dceefef881f2 /macros/src/syntax/ast.rs
parent2ad36a6efed5028e0e6bd991b82a50c045f825a8 (diff)
Removed same prio spawn
Diffstat (limited to 'macros/src/syntax/ast.rs')
-rw-r--r--macros/src/syntax/ast.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/macros/src/syntax/ast.rs b/macros/src/syntax/ast.rs
index ea6e402..da6016a 100644
--- a/macros/src/syntax/ast.rs
+++ b/macros/src/syntax/ast.rs
@@ -224,9 +224,6 @@ pub struct SoftwareTaskArgs {
/// Shared resources that can be accessed from this context
pub shared_resources: SharedResources,
-
- /// Only same priority tasks can spawn this task
- pub only_same_priority_spawn: bool,
}
impl Default for SoftwareTaskArgs {
@@ -235,7 +232,6 @@ impl Default for SoftwareTaskArgs {
priority: 1,
local_resources: LocalResources::new(),
shared_resources: SharedResources::new(),
- only_same_priority_spawn: false,
}
}
}