summaryrefslogtreecommitdiffstats
path: root/spec/score/mtx/req/surrender.yml
blob: fd31ad2987f28f43e9c47edde596559cbd118e1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
copyrights:
- Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
enabled-by: true
functional-type: action
links:
- role: function-implementation
  uid: /score/tq/req/surrender
- role: function-implementation
  uid: /score/tq/req/surrender-mrsp
- role: function-implementation
  uid: /score/tq/req/surrender-priority-inherit
- role: requirement-refinement
  uid: ../if/group
post-conditions:
- name: Status
  states:
  - name: Ok
    test-code: |
      T_eq_int( ctx->status, Status( ctx, STATUS_SUCCESSFUL ) );
    text: |
      The return status of the directive call shall be derived from
      ${../../status/if/successful:/name}.
  - name: NotOwner
    test-code: |
      T_eq_int( ctx->status, Status( ctx, STATUS_NOT_OWNER ) );
    text: |
      The return status of the directive call shall be derived from
      ${../../status/if/not-owner:/name}.
  test-epilogue: null
  test-prologue: null
- name: Owner
  states:
  - name: None
    test-code: |
      T_null( ctx->owner_after );
    text: |
      The mutex shall have no owner.
  - name: Caller
    test-code: |
      T_eq_ptr(
        ctx->owner_after,
        ctx->tq_ctx->base.runner_tcb
      );
    text: |
      The owner of the mutex shall be the calling thread.
  - name: Other
    test-code: |
      T_eq_ptr(
        ctx->owner_after,
        ctx->tq_ctx->base.worker_tcb[ TQ_HELPER_A ]
      );
    text: |
      The owner of the mutex shall not be modified.
  - name: First
    test-code: |
      T_eq_ptr(
        ctx->owner_after,
        ctx->tq_ctx->base.worker_tcb[ TQ_BLOCKER_A ]
      );
    text: |
      The owner of the mutex shall be dequeued thread.
  test-epilogue: null
  test-prologue: null
- name: Surrender
  states:
  - name: Nop
    test-code: |
      T_eq_u32( ctx->counter, 0 );
    text: |
      The thread queue of the mutex shall not be surrendered to a thread.
  - name: FIFO
    test-code: |
      T_eq_u32( ctx->counter, 1 );
      ${../../tq/req/surrender:/test-run}( &ctx->tq_ctx->base );
    text: |
      The thread queue of the mutex shall be surrendered in FIFO order.
  - name: Priority
    test-code: |
      T_eq_u32( ctx->counter, 1 );
      ${../../tq/req/surrender:/test-run}( &ctx->tq_ctx->base );
    text: |
      The thread queue of the mutex shall be surrendered in priority order.
  - name: PriorityInherit
    test-code: |
      T_eq_u32( ctx->counter, 1 );
      ${../../tq/req/surrender-priority-inherit:/test-run}( &ctx->tq_ctx->base );
    text: |
      The thread queue of the mutex shall be surrendered in priority order
      with priority inheritance.
  - name: MrsP
    test-code: |
      T_eq_u32( ctx->counter, 1 );
      ${../../tq/req/surrender-mrsp:/test-run}( &ctx->tq_ctx->base );
    text: |
      The thread queue of the mutex shall be surrendered in priority order
      with MrsP.
  test-epilogue: null
  test-prologue: null
- name: Priority
  states:
  - name: Nop
    test-code: |
      T_eq_u32( ctx->priority_after, ctx->priority_before );
    text: |
      The ${/glossary/priority-current:/term} of the calling thread shall be
      not be modified.
  - name: Low
    test-code: |
      T_eq_u32( ctx->priority_after, ctx->priority_real );
    text: |
      The ${/glossary/priority-current:/term} of the calling thread shall be
      lowered to reflect the removal of the priorities available through the
      mutex.
  test-epilogue: null
  test-prologue: null
pre-conditions:
- name: Protocol
  states:
  - name: None
    test-code: |
      if ( ctx->tq_ctx->protocol != TQ_MTX_NO_PROTOCOL ) {
        ${.:skip}
      }
    text: |
      Where the mutex does not use a locking protocol.
  - name: Inherit
    test-code: |
      if ( ctx->tq_ctx->protocol != TQ_MTX_PRIORITY_INHERIT ) {
        ${.:skip}
      }
    text: |
      Where the mutex uses the priority inheritance locking protocol.
  - name: Ceiling
    test-code: |
      if ( ctx->tq_ctx->protocol != TQ_MTX_PRIORITY_CEILING ) {
        ${.:skip}
      }
    text: |
      Where the mutex uses the priority ceiling locking protocol.
  - name: MrsP
    test-code: |
      if ( ctx->tq_ctx->protocol != TQ_MTX_MRSP ) {
        ${.:skip}
      }
    text: |
      Where the mutex uses the MrsP locking protocol.
  test-epilogue: null
  test-prologue: null
- name: Discipline
  states:
  - name: FIFO
    test-code: |
      if ( ctx->tq_ctx->base.discipline != TQ_FIFO ) {
        ${.:skip}
      }
    text: |
      Where the thread queue of the mutex uses the FIFO discipline.
  - name: Priority
    test-code: |
      if ( ctx->tq_ctx->base.discipline != TQ_PRIORITY ) {
        ${.:skip}
      }
    text: |
      Where the thread queue of the mutex uses the priority discipline.
  test-epilogue: null
  test-prologue: null
- name: Recursive
  states:
  - name: Allowed
    test-code: |
      if ( ctx->tq_ctx->recursive != TQ_MTX_RECURSIVE_ALLOWED ) {
        ${.:skip}
      }
    text: |
      Where a recursive seize of the mutex is allowed.
  - name: NotAllowed
    test-code: |
      if ( ctx->tq_ctx->recursive == TQ_MTX_RECURSIVE_ALLOWED ) {
        ${.:skip}
      }
    text: |
      Where a recursive seize of the mutex is not allowed.
  test-epilogue: null
  test-prologue: null
- name: OwnerCheck
  states:
  - name: 'Yes'
    test-code: |
      if ( ctx->tq_ctx->owner_check != TQ_MTX_CHECKS_OWNER ) {
        ${.:skip}
      }
    text: |
      Where the surrender checks that the mutex owner is the calling thread.
  - name: 'No'
    test-code: |
      if ( ctx->tq_ctx->owner_check != TQ_MTX_NO_OWNER_CHECK ) {
        ${.:skip}
      }
    text: |
      Where the surrender does not check that the mutex owner is the calling
      thread.
  test-epilogue: null
  test-prologue: null
- name: Owner
  states:
  - name: None
    test-code: |
      ctx->owner_caller = false;
      ctx->owner_other = false;
    text: |
      While the mutex has no owner.
  - name: Caller
    test-code: |
      ctx->owner_caller = true;
      ctx->owner_other = false;
    text: |
      While the owner of the mutex is the calling thread.
  - name: Other
    test-code: |
      ctx->owner_caller = false;
      ctx->owner_other = true;
    text: |
      While the owner of the mutex is a thread other than the calling thread.
  test-epilogue: null
  test-prologue: null
- name: Nested
  states:
  - name: 'Yes'
    test-code: |
      ctx->nested = true;
    text: |
      While calling thread seized the mutex recursively.
  - name: 'No'
    test-code: |
      ctx->nested = false;
    text: |
      While calling thread seized the mutex not recursively.
  test-epilogue: null
  test-prologue: null
- name: Blocked
  states:
  - name: 'Yes'
    test-code: |
      ctx->blocked = true;
    text: |
      While the mutex has threads blocked on the mutex.
  - name: 'No'
    test-code: |
      ctx->blocked = false;
    text: |
      While no threads are blocked on the mutex.
  test-epilogue: null
  test-prologue: null
- name: Priority
  states:
  - name: High
    test-code: |
      ctx->priority_real = PRIO_ULTRA_HIGH;
    text: |
      While the ${/glossary/priority-current:/term} of the calling thread
      without the priorities available through the mutex would be higher than
      the highest priority of the priorities available through the mutex.
  - name: Equal
    test-code: |
      ctx->priority_real = PRIO_VERY_HIGH;
    text: |
      While the ${/glossary/priority-current:/term} of the calling thread
      without the priorities available through the mutex would be equal to the
      highest priority of the priorities available through the mutex.
  - name: Low
    test-code: |
      ctx->priority_real = PRIO_HIGH;
    text: |
      While the ${/glossary/priority-current:/term} of the calling thread
      without the priorities available through the mutex would be lower than
      the highest priority of the priorities available through the mutex.
  test-epilogue: null
  test-prologue: null
rationale: null
references: []
requirement-type: functional
skip-reasons:
  BlockedNeedsOwner: |
    Blocked threads only exist, if the mutex has an owner.
  NestedNeedsRecursive: |
    Where the mutex does not allow a recursive seize, the mutex cannot be
    recursively seized.
  MustBeOwner: |
    Where the mutex does not check that the mutex owner is the calling thread,
    the mutex owner must be the calling thread, otherwise the system behaviour
    is undefined.
  PriorityDisciplineByProtocol: |
    The locking protocol require a priority discipline.
test-action: |
  if ( ctx->tq_ctx->base.enqueue_variant == TQ_ENQUEUE_STICKY ) {
    ActionSticky( ctx );
  } else {
    Action( ctx );
  }
test-brief: null
test-cleanup: null
test-context:
- brief: |
    If this member is true, then the calling thread shall be the owner of the
    mutex.
  description: null
  member: |
    bool owner_caller
- brief: |
    If this member is true, then a thread other than the calling thread shall
    be the owner of the mutex.
  description: null
  member: |
    bool owner_other
- brief: |
    If this member is true, then the calling thread shall have seized the mutex
    recursively.
  description: null
  member: |
    bool nested
- brief: |
    If this member is true, then there shall be a thread blocked waiting for
    the mutex.
  description: null
  member: |
    bool blocked
- brief: |
    This member contains the real priority of the calling thread.
  description: null
  member: |
    rtems_task_priority priority_real
- brief: |
    This member contains the current priority of the calling thread before the
    directive call.
  description: null
  member: |
    rtems_task_priority priority_before
- brief: |
    This member contains the return status of the directive call.
  description: null
  member: |
    Status_Control status
- brief: |
    This member contains the owner of the mutex after the directive call.
  description: null
  member: |
    const rtems_tcb *owner_after
- brief: |
    This member contains the current priority of the calling thread after the
    directive call.
  description: null
  member: |
    rtems_task_priority priority_after
- brief: |
    This member contains the counter snapshot after the directive call.
  description: null
  member: |
    uint32_t counter
test-context-support: null
test-description: null
test-header:
  code: null
  freestanding: false
  includes: []
  local-includes:
  - tx-thread-queue.h
  run-params:
  - description: |
      is the thread queue context.
    dir: inout
    name: tq_ctx
    specifier: TQMtxContext *${.:name}
  target: testsuites/validation/tr-mtx-surrender.h
test-includes: []
test-local-includes:
- tr-mtx-surrender.h
- tr-tq-surrender.h
- tr-tq-surrender-mrsp.h
- tr-tq-surrender-priority-inherit.h
test-prepare: |
  ctx->owner_caller = false;
  ctx->owner_other = false;
  ctx->nested = false;
  ctx->blocked = false;

  if ( ctx->tq_ctx->base.enqueue_variant == TQ_ENQUEUE_STICKY ) {
    ctx->priority_real = PRIO_ULTRA_HIGH;
  } else {
    ctx->priority_real = PRIO_NORMAL;
  }
test-setup: null
test-stop: null
test-support: |
  typedef ${.:/test-context-type} Context;

  static Status_Control Status( const Context *ctx, Status_Control status )
  {
    return TQConvertStatus( &ctx->tq_ctx->base, status );
  }

  static void Action( Context *ctx )
  {
    Status_Control status;

    TQSetScheduler(
      &ctx->tq_ctx->base,
      TQ_HELPER_A,
      SCHEDULER_A_ID,
      PRIO_VERY_HIGH
    );
    TQSetScheduler(
      &ctx->tq_ctx->base,
      TQ_BLOCKER_A,
      SCHEDULER_A_ID,
      PRIO_VERY_HIGH
    );

    if ( ctx->owner_caller ) {
      status = TQEnqueue( &ctx->tq_ctx->base, TQ_NO_WAIT );
      T_eq_int( status, Status( ctx, STATUS_SUCCESSFUL ) );
    } else if ( ctx->owner_other ) {
      TQSend( &ctx->tq_ctx->base, TQ_HELPER_A, TQ_EVENT_ENQUEUE );
    }

    if ( ctx->nested ) {
      status = TQEnqueue( &ctx->tq_ctx->base, TQ_NO_WAIT );
      T_eq_int( status, Status( ctx, STATUS_SUCCESSFUL ) );
    }

    if ( ctx->blocked ) {
      TQSend( &ctx->tq_ctx->base, TQ_BLOCKER_A, TQ_EVENT_ENQUEUE );
      Yield();
    }

    TQResetCounter( &ctx->tq_ctx->base );
    SetSelfPriority( ctx->priority_real );
    ctx->priority_before = GetSelfPriority();
    TQSchedulerRecordStart( &ctx->tq_ctx->base );
    ctx->status = TQSurrender( &ctx->tq_ctx->base );
    TQSchedulerRecordStop( &ctx->tq_ctx->base );
    ctx->owner_after = TQGetOwner( &ctx->tq_ctx->base );
    ctx->priority_after = GetSelfPriority();
    SetSelfPriority( PRIO_NORMAL );
    Yield();
    ctx->counter = TQGetCounter( &ctx->tq_ctx->base );

    if ( ctx->nested ) {
      status = TQSurrender( &ctx->tq_ctx->base );
      T_eq_int( status, Status( ctx, STATUS_SUCCESSFUL ) );
    }

    if ( ctx->owner_other ) {
      TQSend( &ctx->tq_ctx->base, TQ_HELPER_A, TQ_EVENT_SURRENDER );
    }

    if ( ctx->blocked ) {
      TQSend( &ctx->tq_ctx->base, TQ_BLOCKER_A, TQ_EVENT_SURRENDER );
    }
  }

  static void ActionSticky( Context *ctx )
  {
    Status_Control status;

    TQSetScheduler(
      &ctx->tq_ctx->base,
      TQ_HELPER_A,
      SCHEDULER_A_ID,
      PRIO_VERY_HIGH
    );
    TQSetScheduler(
      &ctx->tq_ctx->base,
      TQ_BLOCKER_A,
      SCHEDULER_B_ID,
      PRIO_VERY_HIGH
    );

    if ( ctx->owner_caller ) {
      status = TQEnqueue( &ctx->tq_ctx->base, TQ_NO_WAIT );
      T_eq_int( status, Status( ctx, STATUS_SUCCESSFUL ) );
    } else if ( ctx->owner_other ) {
      SetSelfScheduler( SCHEDULER_B_ID, PRIO_ULTRA_HIGH );
      TQSendAndSynchronizeRunner(
        &ctx->tq_ctx->base,
        TQ_HELPER_A,
        TQ_EVENT_ENQUEUE
      );
      SetSelfScheduler( SCHEDULER_A_ID, PRIO_ULTRA_HIGH );
    }

    if ( ctx->nested ) {
      status = TQEnqueue( &ctx->tq_ctx->base, TQ_NO_WAIT );
      T_eq_int( status, Status( ctx, STATUS_SUCCESSFUL ) );
    }

    if ( ctx->blocked ) {
      TQSendAndWaitForIntendToBlock(
        &ctx->tq_ctx->base,
        TQ_BLOCKER_A,
        TQ_EVENT_ENQUEUE
      );
    }

    TQResetCounter( &ctx->tq_ctx->base );
    SetSelfPriority( ctx->priority_real );
    ctx->priority_before = GetSelfPriority();
    TQSchedulerRecordStart( &ctx->tq_ctx->base );
    ctx->status = TQSurrender( &ctx->tq_ctx->base );
    TQSchedulerRecordStop( &ctx->tq_ctx->base );
    ctx->owner_after = TQGetOwner( &ctx->tq_ctx->base );
    ctx->priority_after = GetSelfPriority();

    if ( ctx->status == Status( ctx, STATUS_SUCCESSFUL ) ) {
      TQWaitForExecutionStop( &ctx->tq_ctx->base, TQ_BLOCKER_A );
    }

    ctx->counter = TQGetCounter( &ctx->tq_ctx->base );

    if ( ctx->nested ) {
      status = TQSurrender( &ctx->tq_ctx->base );
      T_eq_int( status, Status( ctx, STATUS_SUCCESSFUL ) );
    }

    if ( ctx->owner_other ) {
      SetSelfScheduler( SCHEDULER_B_ID, PRIO_ULTRA_HIGH );
      TQSendAndSynchronizeRunner(
        &ctx->tq_ctx->base,
        TQ_HELPER_A,
        TQ_EVENT_SURRENDER
      );
      SetSelfScheduler( SCHEDULER_A_ID, PRIO_NORMAL );
    } else {
      SetSelfPriority( PRIO_NORMAL );
    }

    if ( ctx->blocked ) {
      TQSendAndSynchronizeRunner(
        &ctx->tq_ctx->base,
        TQ_BLOCKER_A,
        TQ_EVENT_SURRENDER
      );
    }
  }
test-target: testsuites/validation/tr-mtx-surrender.c
test-teardown: null
text: |
  When the calling thread surrenders the mutex.
transition-map:
- enabled-by: true
  post-conditions:
    Status: Ok
    Owner:
    - if:
        pre-conditions:
          Nested: 'Yes'
      then: Caller
    - if:
        pre-conditions:
          Blocked: 'Yes'
      then: First
    - else: None
    Surrender:
    - if:
        post-conditions:
          Owner: First
      then-specified-by: Discipline
    - else: Nop
    Priority: Nop
  pre-conditions:
    Protocol:
    - None
    Discipline: all
    Recursive: all
    OwnerCheck: all
    Owner:
    - Caller
    Nested: all
    Blocked: all
    Priority: N/A
- enabled-by: true
  post-conditions:
    Status: Ok
    Owner:
    - if:
        pre-conditions:
          Nested: 'Yes'
      then: Caller
    - if:
        pre-conditions:
          Blocked: 'Yes'
      then: First
    - else: None
    Surrender:
    - if:
        and:
        - post-conditions:
            Owner: First
        - pre-conditions:
            Protocol: MrsP
      then: MrsP
    - if:
        post-conditions:
          Owner: First
      then: Priority
    - else: Nop
    Priority:
    - if:
        pre-conditions:
          Nested: 'No'
          Priority: Low
      then: Low
    - else: Nop
  pre-conditions:
    Protocol:
    - Ceiling
    - MrsP
    Discipline: all
    Recursive: all
    OwnerCheck: all
    Owner:
    - Caller
    Nested: all
    Blocked: all
    Priority: all
- enabled-by: true
  post-conditions:
    Status: Ok
    Owner:
    - if:
        pre-conditions:
          Nested: 'Yes'
      then: Caller
    - else: First
    Surrender:
    - if:
        post-conditions:
          Owner: First
      then: PriorityInherit
    - else: Nop
    Priority:
    - if:
        pre-conditions:
          Nested: 'No'
          Priority: Low
      then: Low
    - else: Nop
  pre-conditions:
    Protocol:
    - Inherit
    Discipline: all
    Recursive: all
    OwnerCheck: all
    Owner:
    - Caller
    Nested: all
    Blocked:
    - 'Yes'
    Priority: all
- enabled-by: true
  post-conditions:
    Status: Ok
    Owner:
    - if:
        pre-conditions:
          Nested: 'Yes'
      then: Caller
    - if:
        pre-conditions:
          Blocked: 'Yes'
      then: First
    - else: None
    Surrender:
    - if:
        post-conditions:
          Owner: First
      then: PriorityInherit
    - else: Nop
    Priority: Nop
  pre-conditions:
    Protocol:
    - Inherit
    Discipline: all
    Recursive: all
    OwnerCheck: all
    Owner:
    - Caller
    Nested: all
    Blocked:
    - 'No'
    Priority: N/A
- enabled-by: true
  post-conditions:
    Status: NotOwner
    Owner:
    - specified-by: Owner
    Surrender: Nop
    Priority: Nop
  pre-conditions:
    Protocol: all
    Discipline: all
    Recursive: all
    OwnerCheck:
    - 'Yes'
    Owner: all
    Owner:
    - None
    - Other
    Nested: N/A
    Blocked: all
    Priority: N/A
- enabled-by: true
  post-conditions: BlockedNeedsOwner
  pre-conditions:
    Protocol: all
    Discipline: all
    Recursive: all
    OwnerCheck: all
    Owner:
    - None
    Nested: N/A
    Blocked:
    - 'Yes'
    Priority: N/A
- enabled-by: true
  post-conditions: MustBeOwner
  pre-conditions:
    Protocol: all
    Discipline: all
    Recursive: all
    OwnerCheck:
    - 'No'
    Owner:
    - None
    - Other
    Nested: all
    Blocked: all
    Priority: all
- enabled-by: true
  post-conditions: NestedNeedsRecursive
  pre-conditions:
    Protocol: all
    Discipline: all
    Recursive:
    - NotAllowed
    OwnerCheck: all
    Owner: all
    Nested:
    - 'Yes'
    Blocked: all
    Priority: all
- enabled-by: true
  post-conditions: PriorityDisciplineByProtocol
  pre-conditions:
    Protocol:
    - Inherit
    - Ceiling
    - MrsP
    Discipline:
    - FIFO
    Recursive: all
    OwnerCheck: all
    Owner: all
    Nested: all
    Blocked: all
    Priority: all
type: requirement