diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-10-06 03:25:22 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-10-06 03:25:22 +0000 |
commit | 208b983734d7431699f4bd3534e08321e42ada86 (patch) | |
tree | a6865f0db36e9c3b8dd13b9ed4d10d282f0f7cbf /src/itoqueue.h | |
parent | 1358cb4c7325e01c13533ca402cccc28575cdf14 (diff) | |
download | libbu++-208b983734d7431699f4bd3534e08321e42ada86.tar.gz libbu++-208b983734d7431699f4bd3534e08321e42ada86.tar.bz2 libbu++-208b983734d7431699f4bd3534e08321e42ada86.tar.xz libbu++-208b983734d7431699f4bd3534e08321e42ada86.zip |
Renamed most of the core threading system, some ancillary systems need some
kind of prefix or something, we could stick with Ito, I will until I think of
something else.
Diffstat (limited to 'src/itoqueue.h')
-rw-r--r-- | src/itoqueue.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/itoqueue.h b/src/itoqueue.h index dc3cadb..039e09c 100644 --- a/src/itoqueue.h +++ b/src/itoqueue.h | |||
@@ -10,8 +10,8 @@ | |||
10 | 10 | ||
11 | #include <pthread.h> | 11 | #include <pthread.h> |
12 | 12 | ||
13 | #include "itomutex.h" | 13 | #include "mutex.h" |
14 | #include "itocondition.h" | 14 | #include "condition.h" |
15 | 15 | ||
16 | namespace Bu | 16 | namespace Bu |
17 | { | 17 | { |
@@ -232,8 +232,8 @@ namespace Bu | |||
232 | Item *pEnd; /**< The end of the queue, the last element to dequeue. */ | 232 | Item *pEnd; /**< The end of the queue, the last element to dequeue. */ |
233 | long nSize; /**< The number of items in the queue. */ | 233 | long nSize; /**< The number of items in the queue. */ |
234 | 234 | ||
235 | ItoMutex mOperate; /**< The master mutex, used on all operations. */ | 235 | Mutex mOperate; /**< The master mutex, used on all operations. */ |
236 | ItoCondition cBlock; /**< The condition for blocking dequeues. */ | 236 | Condition cBlock; /**< The condition for blocking dequeues. */ |
237 | }; | 237 | }; |
238 | } | 238 | } |
239 | 239 | ||