diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-11-19 06:31:57 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-11-19 06:31:57 +0000 |
commit | 4ebe0402d23d1f0bdf5cf4d03f0346be33653229 (patch) | |
tree | 937d70c7e0071f4956f236c83c2aa012d52aedc8 /ace/Timeprobe_T.cpp | |
parent | b3fe758c93f06048fa0b56da5582538fae413c6d (diff) | |
download | ATCD-4ebe0402d23d1f0bdf5cf4d03f0346be33653229.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Timeprobe_T.cpp')
-rw-r--r-- | ace/Timeprobe_T.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/ace/Timeprobe_T.cpp b/ace/Timeprobe_T.cpp index c74c2463860..f4ee0af92d3 100644 --- a/ace/Timeprobe_T.cpp +++ b/ace/Timeprobe_T.cpp @@ -96,6 +96,48 @@ ACE_Timeprobe<ACE_LOCK>::reset (void) this->current_size_ = 0; } +template <class ACE_LOCK> ACE_Unbounded_Set<ACE_Event_Descriptions> & +ACE_Timeprobe<ACE_LOCK>::event_descriptions (void) +{ + return this->event_descriptions_; +} + +template <class ACE_LOCK> ACE_Unbounded_Set<ACE_Event_Descriptions> & +ACE_Timeprobe<ACE_LOCK>::sorted_event_descriptions (void) +{ + return this->sorted_event_descriptions_; +} + +template <class ACE_LOCK> u_int * +ACE_Timeprobe<ACE_LOCK>::current_slot_vme_address (void) +{ + return this->current_slot_vme_address_; +} + +template <class ACE_LOCK> ACE_timeprobe_t * +ACE_Timeprobe<ACE_LOCK>::timeprobes (void) +{ + return this->timeprobes_; +} + +template <class ACE_LOCK> ACE_LOCK & +ACE_Timeprobe<ACE_LOCK>::lock (void) +{ + return this->lock_; +} + +template <class ACE_LOCK> u_long +ACE_Timeprobe<ACE_LOCK>::max_size (void) +{ + return this->max_size_; +} + +template <class ACE_LOCK> u_long +ACE_Timeprobe<ACE_LOCK>::current_size (void) +{ + return this->current_size_; +} + template <class ACE_LOCK> int ACE_Timeprobe<ACE_LOCK>::event_descriptions (const char **descriptions, u_long minimum_id) |