diff options
Diffstat (limited to 'macros/src/syntax/ast.rs')
-rw-r--r-- | macros/src/syntax/ast.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/macros/src/syntax/ast.rs b/macros/src/syntax/ast.rs index ea6e402c..da6016ad 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, } } } |