Changes between Initial Version and Version 1 of Ticket #84
- Timestamp:
- 06/18/08 18:41:13 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #84 – Description
initial v1 9 9 T1 : thread T; 10 10 T2 : thread T; 11 D0 : data D { Cheddar_Properties::Critical_Section => ( "T1", "2", "2", 12 "T2", "4", "5" ); }; 11 D0 : data D { Cheddar_Properties::Critical_Section => ( "T1", "2", "2", "T2", "4", "5" ); }; 13 12 end P.I; 14 13 … … 17 16 process implementation P.I 18 17 subcomponents 19 T1 : thread T { Cheddar_Properties::Critical_Section => ( "D0", "2", 20 "2" ); }; 21 T2 : thread T { Cheddar_Properties::Critical_Section => ( "D0", "4", 22 "5" ); }; 18 T1 : thread T { Cheddar_Properties::Critical_Section => ( "D0", "2", "2" ); }; 19 T2 : thread T { Cheddar_Properties::Critical_Section => ( "D0", "4", "5" ); }; 23 20 D0 : data D; 24 21 end P.I; … … 52 49 D0 : data D; 53 50 connections 54 data access D0 -> T1.S {Cheddar_Properties::Critical_Section => ( "2", 55 "2"); }; 56 data access D0 -> T2.S {Cheddar_Properties::Critical_Section => ( "4", 57 "5"); }; 51 data access D0 -> T1.S {Cheddar_Properties::Critical_Section => ( "2", "2"); }; 52 data access D0 -> T2.S {Cheddar_Properties::Critical_Section => ( "4", "5"); }; 58 53 end P.I; 59 54