- File:
-
- 1 edited
-
tests/concurrency/actors/inherit.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/actors/inherit.cfa
r41882628 r7edf912 29 29 sout | "Start"; 30 30 { 31 actor_start();31 start_actor_system(); 32 32 D_msg * dm = alloc(); 33 33 (*dm){}; … … 40 40 *s | *dm; 41 41 *s2 | *dm2; 42 actor_stop();42 stop_actor_system(); 43 43 } 44 44 { 45 actor_start();45 start_actor_system(); 46 46 Server s[2]; 47 47 D_msg * dm = alloc(); … … 51 51 s[0] | *dm; 52 52 s[1] | *dm2; 53 actor_stop();53 stop_actor_system(); 54 54 } 55 55 sout | "Finished";
Note:
See TracChangeset
for help on using the changeset viewer.