diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-20 07:35:14 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-20 07:35:14 +0000 |
commit | 2f0823ef6bff90fbff5d89dc75b4382ab6073327 (patch) | |
tree | 2b5a15359478db9a49cabbd3616e404056054022 /TAO/tao/CDR.cpp | |
parent | 25087bc8ad183cc380a9fd8991f78a0e062ace6b (diff) | |
download | ATCD-2f0823ef6bff90fbff5d89dc75b4382ab6073327.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/CDR.cpp')
-rw-r--r-- | TAO/tao/CDR.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/TAO/tao/CDR.cpp b/TAO/tao/CDR.cpp index fc870848c71..5b0c1862f82 100644 --- a/TAO/tao/CDR.cpp +++ b/TAO/tao/CDR.cpp @@ -31,7 +31,7 @@ // THREADING NOTE: "CDR" is a data structure which must be protected // by external critical sections. -#include "ace/Timeprobe.h" +#include "tao/Timeprobe.h" #include "tao/CDR.h" #include "tao/ORB_Core.h" #include "tao/singletons.h" @@ -46,24 +46,24 @@ ACE_RCSID(tao, CDR, "$Id$") #if defined (ACE_ENABLE_TIMEPROBES) static const char *TAO_CDR_Timeprobe_Description[] = -{ - "OutputCDR::ctor[1] - enter", - "OutputCDR::ctor[1] - leave", - "OutputCDR::ctor[2] - enter", - "OutputCDR::ctor[2] - leave", - "OutputCDR::ctor[3] - enter", - "OutputCDR::ctor[3] - leave" -}; + { + "OutputCDR::ctor[1] - enter", + "OutputCDR::ctor[1] - leave", + "OutputCDR::ctor[2] - enter", + "OutputCDR::ctor[2] - leave", + "OutputCDR::ctor[3] - enter", + "OutputCDR::ctor[3] - leave" + }; enum -{ - TAO_OUTPUT_CDR_CTOR1_ENTER = 2000, - TAO_OUTPUT_CDR_CTOR1_LEAVE, - TAO_OUTPUT_CDR_CTOR2_ENTER, - TAO_OUTPUT_CDR_CTOR2_LEAVE, - TAO_OUTPUT_CDR_CTOR3_ENTER, - TAO_OUTPUT_CDR_CTOR3_LEAVE -}; + { + TAO_OUTPUT_CDR_CTOR1_ENTER = 2000, + TAO_OUTPUT_CDR_CTOR1_LEAVE, + TAO_OUTPUT_CDR_CTOR2_ENTER, + TAO_OUTPUT_CDR_CTOR2_LEAVE, + TAO_OUTPUT_CDR_CTOR3_ENTER, + TAO_OUTPUT_CDR_CTOR3_LEAVE + }; // Setup Timeprobes |