From cecbd0fad5fa69da78518dae040c8f0b5d40b16d Mon Sep 17 00:00:00 2001 From: irfan Date: Sat, 6 Sep 1997 19:52:07 +0000 Subject: *** empty log message *** --- ace/Handle_Set.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'ace/Handle_Set.h') diff --git a/ace/Handle_Set.h b/ace/Handle_Set.h index 376c37fed64..22e098852f4 100644 --- a/ace/Handle_Set.h +++ b/ace/Handle_Set.h @@ -64,10 +64,10 @@ public: // Returns a pointer to the underlying . Returns 0 if // == 0. -#if defined(ACE_HAS_BIG_FD_SET) +#if defined (ACE_HAS_BIG_FD_SET) void operator= (const ACE_Handle_Set &); // Assignment operator optimizes for cases where == 0. -#endif +#endif /* ACE_HAS_BIG_FD_SET */ void dump (void) const; // Dump the state of an object. @@ -82,10 +82,10 @@ private: ACE_HANDLE max_handle_; // Current max handle. -#if defined(ACE_HAS_BIG_FD_SET) +#if defined (ACE_HAS_BIG_FD_SET) ACE_HANDLE min_handle_; // Current min handle. -#endif +#endif /* ACE_HAS_BIG_FD_SET */ fd_set mask_; // Bitmask. @@ -103,10 +103,10 @@ private: // Counts the number of bits enabled in N. Uses a table lookup to // speed up the count. -#if defined(ACE_HAS_BIG_FD_SET) +#if defined (ACE_HAS_BIG_FD_SET) static int bitpos (u_long bit); // Find the bitpos in bit counting of right to left. -#endif +#endif /* ACE_HAS_BIG_FD_SET */ void set_max (ACE_HANDLE max); // Resets the MAX_FD after a clear of the original MAX_FD. @@ -146,9 +146,9 @@ private: #if defined (ACE_WIN32) u_int handle_index_; -#elif !defined(ACE_HAS_BIG_FD_SET) +#elif !defined (ACE_HAS_BIG_FD_SET) int handle_index_; -#elif defined(ACE_HAS_BIG_FD_SET) +#elif defined (ACE_HAS_BIG_FD_SET) int handle_index_; u_long oldlsb_; #endif /* ACE_WIN32 */ @@ -157,18 +157,18 @@ private: int word_num_; // Number of the word we're iterating over (typically between 0..7). -#if defined(ACE_HAS_BIG_FD_SET) +#if defined (ACE_HAS_BIG_FD_SET) int word_max_; // Number max of the words with a possible bit on. -#endif +#endif /* ACE_HAS_BIG_FD_SET */ -#if !defined (ACE_WIN32) && !defined(ACE_HAS_BIG_FD_SET) +#if !defined (ACE_WIN32) && !defined (ACE_HAS_BIG_FD_SET) fd_mask word_val_; // Value of the bits in the word we're iterating on. -#elif !defined (ACE_WIN32) && defined(ACE_HAS_BIG_FD_SET) +#elif !defined (ACE_WIN32) && defined (ACE_HAS_BIG_FD_SET) u_long word_val_; // Value of the bits in the word we're iterating on. -#endif /* ACE_WIN32 && ACE_HAS_BIG_FD_SET */ +#endif /* !ACE_WIN32 && !ACE_HAS_BIG_FD_SET */ }; #if defined (__ACE_INLINE__) -- cgit v1.2.1