File: multipro.cfg

package info (click to toggle)
gnat-glade 2006-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,056 kB
  • ctags: 20
  • sloc: ada: 28,261; sh: 2,888; makefile: 627; ansic: 2
file content (18 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
configuration MultiPro is
   pragma Starter (None);
   part1 : partition := (rci_1);
   part2 : partition := (rci_2);
   part3 : partition := (rci_3);
   part4 : partition := (rci_4);
   procedure Main is in part1;
   pragma Boot_Location ((("tcp", "localhost:12340"),
                          ("xyz", "localhost:12341")));
   for part1'Self_Location use (("xyz", "localhost:12342"),
                                ("tcp", "localhost:12343"));
   for part2'Self_Location use ("xyz", "localhost:12344");
   for part3'Self_Location use (("xyz", "localhost:12345"),
                                ("tcp", "localhost:12346"));
   for part4'Self_Location use ("tcp", "localhost:12347");
   part5 : Partition := (System.Garlic.Protocols.XYZ,
                         System.Garlic.Protocols.XYZ.Server);
end;