source: CIVL/examples/concurrency/spawnBad.cvl@ 9705dfd

1.23 2.0 main test-branch
Last change on this file since 9705dfd was 20d2740, checked in by Stephen Siegel <siegel@…>, 13 years ago

Worked with Tim to get first message-passing example up. Cleaned up concurrency tests somewhat.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@280 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 518 bytes
Line 
1/* spawn2.cvl: simple example of spawning two processes.
2 * More difficult to reduce than spawn.cvl, because
3 * both are accessing variables in the same scope.
4 * civl verify -inputN=10 spawn2.cvl
5 */
6#include<civlc.h>
7
8$input int N;
9int s1, s2;
10
11void f1(int n) {
12 s1 = 0;
13 for (int i=0; i<n; i++) s1 += i;
14}
15
16void f2(int n) {
17 s2 = 0;
18 for (int i=0; i<n; i++) s2 += i;
19}
20
21void main() {
22 $proc p = $spawn f1(N);
23 $proc q = $spawn f2(N);
24
25 $assert s1==s2; // oops, should wait first
26 $wait p;
27 $wait q;
28}
Note: See TracBrowser for help on using the repository browser.