summaryrefslogtreecommitdiff
path: root/ace/Timeprobe_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Timeprobe_T.cpp')
-rw-r--r--ace/Timeprobe_T.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/ace/Timeprobe_T.cpp b/ace/Timeprobe_T.cpp
index 163b9cecfdb..2c18490e3b6 100644
--- a/ace/Timeprobe_T.cpp
+++ b/ace/Timeprobe_T.cpp
@@ -33,12 +33,6 @@ ACE_Timeprobe<ACE_LOCK, ALLOCATOR>::ACE_Timeprobe (u_long size)
this->max_size_);
this->timeprobes_ = temp;
-#if defined (VXWORKS)
- if (sysProcNumGet () == 0)
- this->current_slot_vme_address_ = (u_int *) 0xDa010000;
- else
- this->current_slot_vme_address_ = (u_int *) 0xD8010000;
-#endif /* VXWORKS */
}
template <class ACE_LOCK, class ALLOCATOR>
@@ -60,12 +54,6 @@ ACE_Timeprobe (ALLOCATOR *allocator,
this->max_size_);
this->timeprobes_ = temp;
-#if defined (VXWORKS)
- if (sysProcNumGet () == 0)
- this->current_slot_vme_address_ = (u_int *) 0xDa010000;
- else
- this->current_slot_vme_address_ = (u_int *) 0xD8010000;
-#endif /* VXWORKS */
}
template <class ACE_LOCK, class ALLOCATOR>
@@ -121,11 +109,6 @@ ACE_Timeprobe<ACE_LOCK, ALLOCATOR>::timeprobe (u_long event)
this->current_size_++;
-#if defined (VMETRO_TIME_TEST) && (VXWORKS)
- // If we are using the VMETRO board to get time samples, then write
- // to the other boards VME address.
- *this->current_slot_vme_address_ = event;
-#endif /* VMETRO_TIME_TEST && VXWORKS */
}
template <class ACE_LOCK, class ALLOCATOR> void
@@ -212,12 +195,6 @@ ACE_Timeprobe<ACE_LOCK, ALLOCATOR>::sorted_event_descriptions (void)
return this->sorted_event_descriptions_;
}
-template <class ACE_LOCK, class ALLOCATOR> u_int *
-ACE_Timeprobe<ACE_LOCK, ALLOCATOR>::current_slot_vme_address (void)
-{
- return this->current_slot_vme_address_;
-}
-
template <class ACE_LOCK, class ALLOCATOR> ACE_timeprobe_t *
ACE_Timeprobe<ACE_LOCK, ALLOCATOR>::timeprobes (void)
{