File: echo.cfg

package info (click to toggle)
polyorb 2.11~20140418-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,012 kB
  • ctags: 465
  • sloc: ada: 273,015; sh: 4,507; makefile: 4,265; python: 1,332; cpp: 1,213; java: 507; ansic: 274; xml: 30; perl: 23; exp: 6
file content (17 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
configuration Echo is
   pragma Name_Server (Embedded);

   --  We declare a server partition that executes the server package ...

   Server_Partition : partition := (Server);

   --  ... and a client partition that executes the client main procedure

   Client_Partition : partition;
   procedure Client is in Client_Partition;

   --  The partitions' executables should be put in ./bin

   for Partition'Directory use "bin";

end Echo;