~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/performance-tests/Latency/Thread_Pool/Test.idl

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// Test.idl,v 1.1 2001/05/09 22:38:26 coryan Exp
3
 
//
4
 
 
5
 
/// A simple module to avoid namespace pollution
6
 
module Test
7
 
{
8
 
  /// Use a timestamp to measure the roundtrip delay
9
 
  typedef unsigned long long Timestamp;
10
 
 
11
 
  /// Measure roundtrip delay
12
 
  interface Roundtrip
13
 
  {
14
 
    /// A simple method to measure roundtrip delays
15
 
    /**
16
 
     * The operation simply returns its argument, this is used in AMI
17
 
     * and deferred synchronous tests to measure the roundtrip delay
18
 
     * without the need for a different reply handler for each
19
 
     * request.
20
 
     */
21
 
    Timestamp test_method (in Timestamp send_time);
22
 
 
23
 
    /// Shutdown the ORB
24
 
    void shutdown ();
25
 
  };
26
 
};