summaryrefslogtreecommitdiffstats
path: root/c/src/tests/sptests/sp27/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/sptests/sp27/TODO')
-rw-r--r--c/src/tests/sptests/sp27/TODO27
1 files changed, 0 insertions, 27 deletions
diff --git a/c/src/tests/sptests/sp27/TODO b/c/src/tests/sptests/sp27/TODO
deleted file mode 100644
index 6602ad252b..0000000000
--- a/c/src/tests/sptests/sp27/TODO
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# $Id$
-#
-
-This test will be for rtems_semaphore_flush once it is written.
-
-To avoid scheduling problems in the printout, it would be better to
-have the test program:
-
-volatile int bFlag, cFlag;
-
-TaskA:
- create semaphore with initial count 0
- start taskB and TaskC (Higher priority than taskA, no
-round-robin)
- print bFlag, cFlag (should both be 0)
- semaphore_flush
- print bFlag, cFlag (should both be 1)
-
- TaskB/C:
- obtain semaphore
- set flag (B or C as appropriate)
- suspend/delete self
-
-Successful test would show message from both tasks B and C after the
-message from task A.
-