diff options
author | Steve Huston <shuston@riverace.com> | 2002-10-05 00:25:54 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2002-10-05 00:25:54 +0000 |
commit | 0f9d1b93c445df745f37cb1f616cd9fd155a1b7c (patch) | |
tree | 7caccdf49e172841bf42289e545ee8ab18383951 /ace/Timer_Hash_T.h | |
parent | 6327549fb88cee71553dc8a77222891d5f3600e3 (diff) | |
download | ATCD-0f9d1b93c445df745f37cb1f616cd9fd155a1b7c.tar.gz |
ChangeLogTag:Fri Oct 4 20:22:41 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Timer_Hash_T.h')
-rw-r--r-- | ace/Timer_Hash_T.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Timer_Hash_T.h b/ace/Timer_Hash_T.h index dcc71af81fa..3e0d0548427 100644 --- a/ace/Timer_Hash_T.h +++ b/ace/Timer_Hash_T.h @@ -266,6 +266,12 @@ private: /// Iterator used to expire timers. HASH_ITERATOR *iterator_; +#if defined (ACE_WIN64) + // Part of a hack... see comments in schedule(). + // This is, essentially, the upper 32 bits of a 64-bit pointer on Win64. + ptrdiff_t pointer_base_; +#endif + // = Don't allow these operations for now. ACE_UNIMPLEMENTED_FUNC (ACE_Timer_Hash_T (const ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &)) ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Timer_Hash_T<TYPE, FUNCTOR, ACE_LOCK, BUCKET> &)) |