Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dfa43bc517a07cd080447a4f0a44a947e9f058df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MappingModel cgenRef {
	
	import cGenRef.* from "cGenRef.room"
	import cGenRef.* from "cGenRef.etphys"
	
	Mapping cGenRef.LS -> cGenRef.Sys {
		SubSystemMapping sys1 -> node1 {
			ThreadMapping dflt_thread -> PhysicalThread1
			ThreadMapping other_thread -> PhysicalThread1
			//ThreadMapping other_thread -> PhysicalThread2
		}
//		SubSystemMapping sys2 -> node2 {
//			ThreadMapping dflt_thread -> PhysicalThread1
//			ThreadMapping other_thread -> PhysicalThread2
//		}
	}
}

Back to the top