Changeset 2762 in Sophya for trunk/SophyaPI/PIext/cxxexecutor.cc
- Timestamp:
- May 24, 2005, 6:31:58 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/cxxexecutor.cc
r2755 r2762 156 156 } 157 157 // Pour synchronisation d'execution simultanee 158 ZSync zs(mutx_cxxe , 2); zs.NOp(); // 2 -> broadcast lors de la destruction158 ZSync zs(mutx_cxxe); zs.NOp(); 159 159 160 160 rc = ExecuteCXX(toks); if(rc) return(1); … … 166 166 } 167 167 // Pour synchronisation d'execution simultanee 168 ZSync zs(mutx_cxxe , 2); zs.NOp(); // 2 -> broadcast lors de la destruction168 ZSync zs(mutx_cxxe); zs.NOp(); 169 169 170 170 rc = FillUserCode(tokens[0]); if(rc) return(1); … … 188 188 } 189 189 // Pour synchronisation d'execution simultanee 190 ZSync zs(mutx_cxxe , 2); zs.NOp(); // 2 -> broadcast lors de la destruction190 ZSync zs(mutx_cxxe); zs.NOp(); 191 191 192 192 rc = FillUserCode(toks,2); if(rc) return(1); … … 200 200 } 201 201 // Pour synchronisation d'execution simultanee 202 ZSync zs(mutx_cxxe , 2); zs.NOp(); // 2 -> broadcast lors de la destruction202 ZSync zs(mutx_cxxe); zs.NOp(); 203 203 204 204 rc = FillUserCode(tokens[2]); if(rc) return(1); … … 210 210 } else if(kw == "c++compile") { 211 211 // Pour synchronisation d'execution simultanee 212 ZSync zs(mutx_cxxe , 2); zs.NOp(); // 2 -> broadcast lors de la destruction212 ZSync zs(mutx_cxxe); zs.NOp(); 213 213 214 214 if(tokens.size()>=1) rc = Compile(tokens[0]); … … 218 218 } else if(kw == "c++link") { 219 219 // Pour synchronisation d'execution simultanee 220 ZSync zs(mutx_cxxe , 2); zs.NOp(); // 2 -> broadcast lors de la destruction220 ZSync zs(mutx_cxxe); zs.NOp(); 221 221 222 222 if(tokens.size()>=2) rc = Link(tokens[0],tokens[1]);
Note:
See TracChangeset
for help on using the changeset viewer.