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/itocounter.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/itocounter.h')
-rw-r--r-- | src/itocounter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/itocounter.h b/src/itocounter.h index 10df467..10126a5 100644 --- a/src/itocounter.h +++ b/src/itocounter.h | |||
@@ -8,7 +8,7 @@ | |||
8 | #ifndef BU_ITO_COUNTER_H | 8 | #ifndef BU_ITO_COUNTER_H |
9 | #define BU_ITO_COUNTER_H | 9 | #define BU_ITO_COUNTER_H |
10 | 10 | ||
11 | #include "itomutex.h" | 11 | #include "mutex.h" |
12 | 12 | ||
13 | namespace Bu | 13 | namespace Bu |
14 | { | 14 | { |
@@ -42,7 +42,7 @@ namespace Bu | |||
42 | 42 | ||
43 | private: | 43 | private: |
44 | T tCounter; /**< The counter itself. */ | 44 | T tCounter; /**< The counter itself. */ |
45 | ItoMutex mOperate; /**< The master mutex, used on all operations. */ | 45 | Mutex mOperate; /**< The master mutex, used on all operations. */ |
46 | }; | 46 | }; |
47 | } | 47 | } |
48 | 48 | ||