summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1495_Regression/test.idl
blob: 60a9b2e526b61dcfa2522379e38fcb5e4544fbee (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
// $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
{
    /// 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 long thread_id);

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