summaryrefslogtreecommitdiff
path: root/ace/Synch_T.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-17 05:44:08 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-17 05:44:08 +0000
commit308ce8d1397c750dbfa417d1e5b9789f145d13ad (patch)
tree32899d4e523f3a4b8ca0d9f8b95a012a48268330 /ace/Synch_T.h
parent4bc3aff4b232f037730983d1b8cd048f5e43f557 (diff)
downloadATCD-308ce8d1397c750dbfa417d1e5b9789f145d13ad.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r--ace/Synch_T.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 705f167a98a..d9d749e900b 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -144,57 +144,57 @@ public:
// = Initialization methods.
ACE_Atomic_Op (void);
- // Initialize <count_> to 0.
+ // Initialize <value_> to 0.
ACE_Atomic_Op (const TYPE &c);
- // Initialize <count_> to c.
+ // Initialize <value_> to c.
// = Accessors.
TYPE operator++ (void);
- // Atomically pre-increment <count_>.
+ // Atomically pre-increment <value_>.
TYPE operator++ (int);
- // Atomically post-increment <count_>.
+ // Atomically post-increment <value_>.
TYPE operator+= (const TYPE &i);
- // Atomically increment <count_> by inc.
+ // Atomically increment <value_> by i.
TYPE operator-- (void);
- // Atomically pre-decrement <count_>.
+ // Atomically pre-decrement <value_>.
TYPE operator-- (int);
- // Atomically post-decrement <count_>.
+ // Atomically post-decrement <value_>.
TYPE operator-= (const TYPE &i);
- // Atomically decrement <count_> by dec.
+ // Atomically decrement <value_> by i.
int operator== (const TYPE &i) const;
- // Atomically compare <count_> with rhs.
+ // Atomically compare <value_> with i.
+
+ int operator!= (const TYPE &i) const;
+ // Atomically compare <value_> with i.
int operator>= (const TYPE &i) const;
- // Atomically check if <count_> greater than or equal to rhs.
+ // Atomically check if <value_> greater than or equal to i.
int operator> (const TYPE &rhs) const;
- // Atomically check if <count_> greater than rhs.
+ // Atomically check if <value_> greater than i.
int operator<= (const TYPE &rhs) const;
- // Atomically check if <count_> less than or equal to rhs.
+ // Atomically check if <value_> less than or equal to i.
int operator< (const TYPE &rhs) const;
- // Atomically check if <count_> less than rhs.
+ // Atomically check if <value_> less than i.
void operator= (const TYPE &i);
- // Atomically assign rhs to <count_>.
+ // Atomically assign i to <value_>.
void operator= (const ACE_Atomic_Op<ACE_LOCK, TYPE> &rhs);
- // Atomically assign <rhs> to <count_>.
-
- operator TYPE () const;
- // Atomically return <count_>.
+ // Atomically assign <rhs> to <value_>.
TYPE value (void) const;
- // Explicitly return <count_>.
+ // Explicitly return <value_>.
void dump (void) const;
// Dump the state of an object.