aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/itoqueue.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/itoqueue.h b/src/itoqueue.h
index 75a2f27..5945344 100644
--- a/src/itoqueue.h
+++ b/src/itoqueue.h
@@ -9,12 +9,12 @@
9namespace Bu 9namespace Bu
10{ 10{
11 /** 11 /**
12 * A thread-safe queue class. This class is a very simple queue with some cool 12 * A thread-safe queue class. This class is a very simple queue with some
13 * extra functionality for use with the Ito system. The main extra that it 13 * cool extra functionality for use with the Ito system. The main extra
14 * provides is the option to either dequeue without blocking, with infinite 14 * that it provides is the option to either dequeue without blocking, with
15 * blocking, or with timed blocking, which will return a value if something is 15 * infinite blocking, or with timed blocking, which will return a value if
16 * enqueued within the specified time limit, or NULL if the time limit is 16 * something is enqueued within the specified time limit, or NULL if the
17 * exceded. 17 * time limit is exceded.
18 *@author Mike Buland 18 *@author Mike Buland
19 */ 19 */
20 template <class T> 20 template <class T>