summaryrefslogtreecommitdiff
path: root/ace/Synch_T.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-13 04:58:40 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-13 04:58:40 +0000
commit096c88c18aac594779cba1e835b01a8468533c30 (patch)
treeb7de034f8b569d35926ebe93b39bf4bf80c08329 /ace/Synch_T.h
parentd6bebbf39b83de5f39af9ab97f447f58845c535d (diff)
downloadATCD-096c88c18aac594779cba1e835b01a8468533c30.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r--ace/Synch_T.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 775288687fa..134e26cb328 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -169,19 +169,19 @@ public:
TYPE operator-= (const TYPE &i);
// Atomically decrement <count_> by dec.
- TYPE operator== (const TYPE &i) const;
+ int operator== (const TYPE &i) const;
// Atomically compare <count_> with rhs.
- TYPE operator>= (const TYPE &i) const;
+ int operator>= (const TYPE &i) const;
// Atomically check if <count_> greater than or equal to rhs.
- TYPE operator> (const TYPE &rhs) const;
+ int operator> (const TYPE &rhs) const;
// Atomically check if <count_> greater than rhs.
- TYPE operator<= (const TYPE &rhs) const;
+ int operator<= (const TYPE &rhs) const;
// Atomically check if <count_> less than or equal to rhs.
- TYPE operator< (const TYPE &rhs) const;
+ int operator< (const TYPE &rhs) const;
// Atomically check if <count_> less than rhs.
void operator= (const TYPE &i);