mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
first step in prepating the test & measurement infrastructure. The next steps are: complete that with a working version of the evoluted DSA client, and then make a CORBA version of evoluted. [Imported from Perforce change 5687 at 2006-12-01 19:48:49] Subversion-branch: /trunk/polyorb Subversion-revision: 33984
26 lines
653 B
INI
26 lines
653 B
INI
configuration BBS is
|
|
|
|
pragma Starter (None);
|
|
pragma Boot_Server ("tcp", "localhost:4161");
|
|
|
|
SimpleP : Partition := ();
|
|
procedure Simple;
|
|
for SimpleP'Main use Simple;
|
|
for SimpleP'Termination use Local_Termination;
|
|
|
|
ServerP : Partition := (Server);
|
|
procedure Do_Nothing is in ServerP;
|
|
for ServerP'Termination use Deferred_Termination;
|
|
|
|
ProxyP : Partition := ();
|
|
procedure Proxy_Main;
|
|
for ProxyP'Main use Proxy_Main;
|
|
for ProxyP'Termination use Local_Termination;
|
|
|
|
EvolutedP : Partition := ();
|
|
procedure Evoluted;
|
|
for EvolutedP'Main use Evoluted;
|
|
for EvolutedP'Termination use Local_Termination;
|
|
|
|
end BBS;
|