summaryrefslogtreecommitdiff
path: root/samples/nanokernel/test/test_lifo/src/README
diff options
context:
space:
mode:
Diffstat (limited to 'samples/nanokernel/test/test_lifo/src/README')
-rw-r--r--samples/nanokernel/test/test_lifo/src/README35
1 files changed, 0 insertions, 35 deletions
diff --git a/samples/nanokernel/test/test_lifo/src/README b/samples/nanokernel/test/test_lifo/src/README
deleted file mode 100644
index fdd263dc9..000000000
--- a/samples/nanokernel/test/test_lifo/src/README
+++ /dev/null
@@ -1,35 +0,0 @@
-This LIFO test set covers the following scenarios.
-
-nano_fiber_lifo_get(TICKS_UNLIMITED)
- - Getting an item from an emtpy LIFO (involves blocking and waking)
- - Getting an item from a non-empty LIFO (no blocking)
-
-nano_task_lifo_get(TICKS_UNLIMITED)
- - Getting an item from an emtpy LIFO (involves blocking and waking)
- - Getting an item from a non-empty LIFO (no blocking)
-
-nano_isr_lifo_get(TICKS_NONE)
- - Getting an item from a non-empty LIFO (no blocking)
- - Getting an item from an empty LIFO (no blocking, returns NULL)
-
-nano_fiber_lifo_get(TICKS_NONE)
- - Getting an item from a non-empty LIFO (no blocking)
- - Getting an item from an empty LIFO (no blocking, returns NULL)
-
-nano_task_lifo_get(TICKS_NONE)
- - Getting an item from a non-empty LIFO (no blocking)
- - Getting an item from an empty LIFO (no blocking, returns NULL)
-
-nano_fiber_lifo_put
- - Waking a task blocked on an empty LIFO
- - Putting an item into an empty LIFO that upon which nothing is blocked
- - Putting an item into a non-empty LIFO
-
-nano_task_lifo_put
- - Waking a fiber blocked on an empty LIFO
- - Putting an item into an empty LIFO that upon which nothing is blocked
- - Putting an item into a non-empty LIFO
-
-nano_isr_lifo_put
- - Putting an item into an empty LIFO that upon which nothing is blocked
- - Putting an item into a non-empty LIFO