summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/performance-tests/Keyed/Base/Perf_Keyed_Test_Base.idl
blob: 440941e210c52e22c8cf40f3b9de328bcf26000c (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
// $Id$

/**
 * @file Perf_Keyed_Test_Base.idl
 * @author Marijke Hengstmengel <mhengstmengel@remedy.nl>
 */

#ifndef PERF_KEYED_TEST_BASE_IDL
#define PERF_KEYED_TEST_BASE_IDL

//const long KEY_SIZE = 4;

struct PerfKeyedTest {
  string key; //@key
  unsigned long seq_num;
  long latency_ping;
  unsigned long iteration;
  unsigned long timestamp_ccm_sec;
  long timestamp_ccm_usec;
  //long timestamp_dds_sec;
  //unsigned long timestamp_dds_usec;
  //long duration_dds_sec;
  //unsigned long duration_dds_usec;
};

typedef sequence<PerfKeyedTest> PerfKeyedTest_Seq;

#endif