summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-21 21:26:36 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-21 21:26:36 +0000
commitaeae39065f8cb1a1a49f4635c562a7bac58998d2 (patch)
tree591dc9e0cc41f0c956b3d04a65647106b9c3e2bc
parent8d6b1cf637eb183820388c1047b9c7156544f8c9 (diff)
downloadATCD-aeae39065f8cb1a1a49f4635c562a7bac58998d2.tar.gz
Removed struct keyword from functions that used ACE_Cleanup_Info.
-rw-r--r--ace/OS.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/ace/OS.h b/ace/OS.h
index b7cecfe4047..a6605a88902 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -1957,6 +1957,7 @@ typedef int ACE_hthread_t;
typedef u_int ACE_thread_key_t;
#elif defined (ACE_HAS_WTHREADS)
+
typedef CRITICAL_SECTION ACE_thread_mutex_t;
typedef struct
{
@@ -1967,7 +1968,13 @@ typedef struct
CRITICAL_SECTION thr_mutex_;
};
} ACE_mutex_t;
+
+#if !defined (ACE_HAS_WINCE)
typedef HANDLE ACE_sema_t;
+#else
+
+
+#endif /* ACE_HAS_WINCE */
// These need to be different values, neither of which can be 0...
# define USYNC_THREAD 1
@@ -3648,10 +3655,10 @@ public:
ACE_Cleanup_Info (void);
// Default constructor.
- int operator== (const struct ACE_Cleanup_Info &o) const;
+ int operator== (const ACE_Cleanup_Info &o) const;
// Equality operator.
- int operator!= (const struct ACE_Cleanup_Info &o) const;
+ int operator!= (const ACE_Cleanup_Info &o) const;
// Inequality operator.
void *object_;