summaryrefslogtreecommitdiff
path: root/TAO/tao/Timeprobe.h
blob: d6df95704d7b1aa47459c77427864b9c4c4fbeed (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
// $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 - end",

  "GIOP::recv_request - start",
  "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",
  "CORBA_ORB::run end",

};

enum 
{
  TAO_TIMEPROBE_DESCRIPTION_TABLE,

  TAO_GIOP_SEND_REQUEST_START,
  TAO_GIOP_SEND_REQUEST_END,

  TAO_GIOP_RECV_REQUEST_START,
  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

};