ast-experimental
Last change
on this file since 8463136 was
9319a23,
checked in by caparson <caparson@…>, 19 months ago
|
added channel tests that use new termination feature
|
-
Property mode set to
100644
|
File size:
1.8 KB
|
Line | |
---|
1 | #include <locks.hfa> |
---|
2 | #include <fstream.hfa> |
---|
3 | #include <stdio.h> |
---|
4 | #include <channel.hfa> |
---|
5 | #include <thread.hfa> |
---|
6 | #include <time.hfa> |
---|
7 | #include <string.h> |
---|
8 | |
---|
9 | size_t total_operations = 0; |
---|
10 | size_t Processors = 1, Tasks = 4; |
---|
11 | |
---|
12 | owner_lock o; |
---|
13 | |
---|
14 | typedef channel( int ) Channel; |
---|
15 | |
---|
16 | Channel * chain; |
---|
17 | |
---|
18 | bool done = false; |
---|
19 | int id_counter = 0; |
---|
20 | thread Task { int id; int right; }; |
---|
21 | static inline void ?{}( Task & this ) with(this) { |
---|
22 | id = __atomic_fetch_add( &id_counter, 1, __ATOMIC_SEQ_CST ); |
---|
23 | right = (id + 1) % Tasks; |
---|
24 | } |
---|
25 | void main(Task & this) with(this) { |
---|
26 | size_t runs = 0; |
---|
27 | try { |
---|
28 | for ( ;; ) { |
---|
29 | if ( done ) break; |
---|
30 | remove( chain[id] ); |
---|
31 | insert( chain[right], 0 ); |
---|
32 | runs++; |
---|
33 | } |
---|
34 | } catch ( channel_closed * e ) {} |
---|
35 | lock( o ); |
---|
36 | total_operations += runs; |
---|
37 | unlock( o ); |
---|
38 | } |
---|
39 | |
---|
40 | |
---|
41 | int main( int argc, char * argv[] ) { |
---|
42 | switch ( argc ) { |
---|
43 | case 3: |
---|
44 | if ( strcmp( argv[2], "d" ) != 0 ) { // default ? |
---|
45 | Tasks = atoi( argv[2] ); |
---|
46 | if ( Tasks < 1 ) goto Usage; |
---|
47 | } // if |
---|
48 | case 2: |
---|
49 | if ( strcmp( argv[1], "d" ) != 0 ) { // default ? |
---|
50 | Processors = atoi( argv[1] ); |
---|
51 | if ( Processors < 1 ) goto Usage; |
---|
52 | } // if |
---|
53 | case 1: // use defaults |
---|
54 | break; |
---|
55 | default: |
---|
56 | Usage: |
---|
57 | sout | "Usage: " | argv[0] |
---|
58 | | " [ processors (> 0) | 'd' (default " | Processors |
---|
59 | | ") ] [ channel size (>= 0) | 'd' (default " | Tasks |
---|
60 | | ") ]" ; |
---|
61 | exit( EXIT_FAILURE ); |
---|
62 | } // switch |
---|
63 | processor proc[Processors - 1]; |
---|
64 | |
---|
65 | sout | "start"; |
---|
66 | |
---|
67 | chain = aalloc( Tasks ); |
---|
68 | for ( i; Tasks ) { |
---|
69 | chain[i]{ 1 }; |
---|
70 | } |
---|
71 | |
---|
72 | insert( chain[0], 0 ); |
---|
73 | { |
---|
74 | Task t[Tasks]; |
---|
75 | sleep(10`s); |
---|
76 | done = true; |
---|
77 | for ( j; Tasks ) |
---|
78 | close( chain[j] ); |
---|
79 | } |
---|
80 | |
---|
81 | // sout | total_operations; |
---|
82 | |
---|
83 | sout | "done"; |
---|
84 | |
---|
85 | adelete(chain); |
---|
86 | |
---|
87 | return 0; |
---|
88 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.