summaryrefslogtreecommitdiff
path: root/TAO/tao/Timeprobe.h
blob: 561cd44b63f5c345d4857fcc58d2c2cf6cde2178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// $Id$

#define ACE_COMPILE_TIMEPROBES
#define ACE_ENABLE_TIMEPROBES
//#define ACE_MT_TIMEPROBES
//#define ACE_TSS_TIMEPROBES

#include "ace/Timeprobe.h"

static const char *TAO_Timeprobe_Description[] = 
{ 

  "TAO Timeprobe Description Table",

  "  -> GIOP::send_request - start",
  "  -> GIOP::send_request - fail",
  "  -> GIOP::send_request - end",

  "  -> GIOP::recv_request - start",
  "  -> GIOP::recv_request - fail",
  "  -> GIOP::recv_request - eof",
  "  -> GIOP::recv_request - end",

  "  -> Server_Connection_Handler::send_response - start",
  "  -> Server_Connection_Handler::send_response - end",
  "  -> Server_Connection_Handler::handle_input start",
  "  -> Server_Connection_Handler::handle_input end",

  "  -> Client_Connection_Handler::send_request - start",
  "  -> Client_Connection_Handler::send_request - end",

  "  -> CORBA_ORB::run start handling events",
  "  -> CORBA_ORB::run end events handled",

};

enum 
{
  TAO_TIMEPROBE_DESCRIPTION_TABLE,

  TAO_GIOP_SEND_REQUEST_START,
  TAO_GIOP_SEND_REQUEST_FAIL,
  TAO_GIOP_SEND_REQUEST_END,

  TAO_GIOP_RECV_REQUEST_START,
  TAO_GIOP_RECV_REQUEST_FAIL,
  TAO_GIOP_RECV_REQUEST_EOF,
  TAO_GIOP_RECV_REQUEST_END,

  TAO_SERVER_CONNECTION_HANDLER_SEND_RESPONSE_START,
  TAO_SERVER_CONNECTION_HANDLER_SEND_RESPONSE_END,
  TAO_SERVER_CONNECTION_HANDLER_HANDLE_INPUT_START,
  TAO_SERVER_CONNECTION_HANDLER_HANDLE_INPUT_END,

  TAO_CLIENT_CONNECTION_HANDLER_SEND_REQUEST_START,
  TAO_CLIENT_CONNECTION_HANDLER_SEND_REQUEST_END,

  TAO_CORBA_ORB_RUN_START,
  TAO_CORBA_ORB_RUN_END,



  TAO_LAST_TIMEPROBE_ENTRY

};