ADT
ast-experimental
Last change
on this file since 8a97248 was 1c75ef8, checked in by caparsons <caparson@…>, 3 years ago |
added pingpong test
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | #include <fstream.hfa>
|
---|
2 | #include <stdlib.hfa>
|
---|
3 | #include <string.h>
|
---|
4 | #include <stdio.h>
|
---|
5 | #include <mutex_stmt.hfa>
|
---|
6 | #include <actor.hfa>
|
---|
7 |
|
---|
8 | struct ping {
|
---|
9 | inline actor;
|
---|
10 | };
|
---|
11 | static inline void ?{}( ping & this ) { ((actor &)this){}; }
|
---|
12 |
|
---|
13 | struct pong {
|
---|
14 | inline actor;
|
---|
15 | };
|
---|
16 | static inline void ?{}( pong & this ) { ((actor &)this){}; }
|
---|
17 |
|
---|
18 | struct p_msg {
|
---|
19 | inline message;
|
---|
20 | size_t count;
|
---|
21 | };
|
---|
22 | static inline void ?{}( p_msg & this ) { ((message &)this){}; this.count = 0; }
|
---|
23 |
|
---|
24 | ping * pi;
|
---|
25 | pong * po;
|
---|
26 | size_t times = 100000;
|
---|
27 |
|
---|
28 | Allocation receive( ping & receiver, p_msg & msg ) {
|
---|
29 | msg.count++;
|
---|
30 | if ( msg.count > times ) return Finished;
|
---|
31 |
|
---|
32 | Allocation retval = Nodelete;
|
---|
33 | if ( msg.count == times ) retval = Finished;
|
---|
34 | *po | msg;
|
---|
35 | return retval;
|
---|
36 | }
|
---|
37 |
|
---|
38 | Allocation receive( pong & receiver, p_msg & msg ) {
|
---|
39 | msg.count++;
|
---|
40 | if ( msg.count > times ) return Finished;
|
---|
41 |
|
---|
42 | Allocation retval = Nodelete;
|
---|
43 | if ( msg.count == times ) retval = Finished;
|
---|
44 | *pi | msg;
|
---|
45 | return retval;
|
---|
46 | }
|
---|
47 |
|
---|
48 | size_t Processors = 2;
|
---|
49 |
|
---|
50 | int main( int argc, char * argv[] ) {
|
---|
51 | printf("start\n");
|
---|
52 |
|
---|
53 | processor p[Processors - 1];
|
---|
54 |
|
---|
55 | start_actor_system( Processors ); // test passing number of processors
|
---|
56 |
|
---|
57 | ping pi_actor;
|
---|
58 | pong po_actor;
|
---|
59 | po = &po_actor;
|
---|
60 | pi = &pi_actor;
|
---|
61 | p_msg m;
|
---|
62 | pi_actor | m;
|
---|
63 | stop_actor_system();
|
---|
64 |
|
---|
65 | printf("end\n");
|
---|
66 | return 0;
|
---|
67 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.