Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1495_Regression / test.idl
blob2ec0f94b2ded06834cb8266633bd5368df71bcef
2 //=============================================================================
3 /**
4 * @file test.idl
6 * Simple IDL file to test regression of bug 1495
9 * @author Will Otte <wotte@dre.vanderbilt.edu>
11 //=============================================================================
14 module Bug1495_Regression
16 // Use "long long" to support platforms with 64-bit thread IDs.
17 typedef long long ThreadId;
19 /// A test idl to check Bug 1495
20 interface Bug1495
22 /// get the thread id of the thread that services this request.
23 void get_thread_id (out ThreadId thread_id);
25 /// Shutdown the ORB.
26 oneway void shutdown ();