Files
PolyORB/examples/bbs/bbs.cfg
Thomas Quinot b4f66ed41b Add a working version of BBS for DSA. This is the
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
2002-11-14 14:51:27 +00:00

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;