Tracerestrict: Add flag for whether reserve through is always set

This commit is contained in:
Jonathan G Rennison
2022-06-11 16:40:32 +01:00
parent 5a02a13885
commit 02dabad81e
3 changed files with 7 additions and 0 deletions

View File

@@ -422,6 +422,7 @@ enum TraceRestrictProgramActionsUsedFlags {
TRPAUF_SLOT_ACQUIRE_ON_RES = 1 << 14, ///< Slot acquire (on reserve) action is present
TRPAUF_SPEED_ADAPTATION = 1 << 15, ///< Speed adaptation control
TRPAUF_PBS_RES_END_SIMULATE = 1 << 16, ///< PBS reservations ending at this signal slot changes must be fully simulated in dry run mode
TRPAUF_RESERVE_THROUGH_ALWAYS = 1 << 17, ///< Reserve through action is unconditionally set
};
DECLARE_ENUM_AS_BIT_SET(TraceRestrictProgramActionsUsedFlags)