summaryrefslogtreecommitdiff
path: root/TAO/utils/logWalker/GIOP_Buffer.h
diff options
context:
space:
mode:
authorPhil Mesnier <mesnierp@ociweb.com>2016-04-05 01:42:56 -0500
committerPhil Mesnier <mesnierp@ociweb.com>2016-04-05 14:21:08 -0500
commit6ac0377593bdd11ce6bcb3c001e51f1c6446bab3 (patch)
treedac0afc995c3564ae24f9f1d8284626c4334262f /TAO/utils/logWalker/GIOP_Buffer.h
parent178c640975b23879a1c1dbdb17b054a7f60ab39b (diff)
downloadATCD-6ac0377593bdd11ce6bcb3c001e51f1c6446bab3.tar.gz
Add relative (to earliest parsed) time on thread invocation reports
Diffstat (limited to 'TAO/utils/logWalker/GIOP_Buffer.h')
-rw-r--r--TAO/utils/logWalker/GIOP_Buffer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/utils/logWalker/GIOP_Buffer.h b/TAO/utils/logWalker/GIOP_Buffer.h
index 03d74e8c9be..46209b1bc74 100644
--- a/TAO/utils/logWalker/GIOP_Buffer.h
+++ b/TAO/utils/logWalker/GIOP_Buffer.h
@@ -59,7 +59,9 @@ public:
bool is_full (void) const;
size_t log_posn (void) const;
Thread *thread (void);
- time_t time (void) const;
+
+ const ACE_Time_Value & time (void) const;
+ void time (const ACE_Time_Value &);
const ACE_CString &preamble(void) const;
size_t expected_req_id(void) const;
@@ -90,7 +92,7 @@ private:
ACE_CString preamble_;
size_t log_offset_;
Thread *thr_;
- time_t time_;
+ ACE_Time_Value time_;
size_t expected_req_id_;
size_t expected_size_;
char expected_type_;