summaryrefslogtreecommitdiff
path: root/tests/Bug_1495_Regression/test.idl
blob: 1f070aa6633f3724bccafea0db6aa8701ab568e5 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/Bug_1495_Regression
//
// = FILENAME
//    test.idl
//
// = DESCRIPTION
//   Simple IDL file to test regression of bug 1495
//
// = AUTHORS
//   Will Otte <wotte@dre.vanderbilt.edu>
//
// ============================================================================

module Bug1495_Regression
{
  // Use "long long" to support platforms with 64-bit thread IDs.
  typedef long long ThreadId;

  /// A test idl to check Bug 1495
  interface Bug1495
  {
    /// get the thread id of the thread that services this request.
    void get_thread_id (out ThreadId thread_id);

    /// Shutdown the ORB.
    oneway void shutdown ();
  };
};