Skip to content
Snippets Groups Projects
Commit 50125854 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added AutoDoc mk II markup for Thread.Fifo->read_array().

Rev: lib/modules/Thread.pmod:1.29
parent a0bf1f10
Branches
Tags
No related merge requests found
......@@ -120,6 +120,14 @@ optional class Fifo {
return tmp;
}
//! This function returns all values currently in the fifo. Values in
//! the array will be in the order they were written. If there are no
//! values present in the fifo the current thread will sleep until
//! some other thread writes a value to the fifo.
//!
//! @seealso
//! @[write()], @[read()]
//!
array read_array()
{
array ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment