diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-07-31 23:20:38 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-07-31 23:20:38 +0000 |
commit | 2d3eff56d19abc22a28e19c2cdbc7e3ab620801d (patch) | |
tree | 52a5a6ab70304abb92cc05d6c703211c5060851a /ace/Log_Record.h | |
parent | bea3569c416be81ada8810b87a7878eaf52ed826 (diff) | |
download | ATCD-2d3eff56d19abc22a28e19c2cdbc7e3ab620801d.tar.gz |
ChangeLogTag:Tue Jul 31 05:34:48 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Log_Record.h')
-rw-r--r-- | ace/Log_Record.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/ace/Log_Record.h b/ace/Log_Record.h index 131db76d129..89e3ddc1a0d 100644 --- a/ace/Log_Record.h +++ b/ace/Log_Record.h @@ -6,11 +6,10 @@ * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - // These need to go outside of the #ifdef to avoid problems with // circular dependencies... #include "ace/OS.h" @@ -29,7 +28,6 @@ class ACE_Export ACE_Log_Record { public: - enum { /// Maximum size of a logging message. @@ -140,7 +138,7 @@ public: void length (long); /// Get the time stamp of the <Log_Record>. - const ACE_Time_Value &time_stamp (void) const; + ACE_Time_Value time_stamp (void) const; /// Set the time stamp of the <Log_Record>. void time_stamp (const ACE_Time_Value &); @@ -179,13 +177,14 @@ private: ACE_INT32 length_; /// Type of logging record. - long type_; + ACE_UINT32 type_; /// Time that the logging record was generated. - ACE_Time_Value time_stamp_; + ACE_UINT32 secs_; + ACE_UINT32 usecs_; /// Id of process that generated the logging record. - long pid_; + ACE_UINT32 pid_; /// Logging record data ACE_TCHAR msg_data_[MAXLOGMSGLEN]; |