Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / ImplRepo_Service / ImR_Activator.idl
blobb636f001ac24eda0814f6dd01bcf0d6081938382
1 // -*- IDL -*-
3 #include "ImplRepo.idl"
5 module ImplementationRepository
7 interface Activator
9 /// Tells the activator to launch a server with the given information.
10 void start_server (in string name, in string cmdline,
11 in string dir, in EnvironmentList env) raises(CannotActivate);
13 oneway void shutdown ();
16 interface ActivatorExt : Activator
18 /// Tells the activator to send a signal to a child process
19 boolean kill_server (in string name, in long pid, in short signum);
21 /// Check if the pid is still alive
22 boolean still_alive (in long pid);