Changeset 41882628 for tests/concurrency/actors/inherit.cfa
- Timestamp:
- Nov 11, 2024, 10:30:53 PM (6 days ago)
- Branches:
- master
- Children:
- a3af522
- Parents:
- 105fb21
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/actors/inherit.cfa
r105fb21 r41882628 29 29 sout | "Start"; 30 30 { 31 start_actor_system();31 actor_start(); 32 32 D_msg * dm = alloc(); 33 33 (*dm){}; … … 40 40 *s | *dm; 41 41 *s2 | *dm2; 42 stop_actor_system();42 actor_stop(); 43 43 } 44 44 { 45 start_actor_system();45 actor_start(); 46 46 Server s[2]; 47 47 D_msg * dm = alloc(); … … 51 51 s[0] | *dm; 52 52 s[1] | *dm2; 53 stop_actor_system();53 actor_stop(); 54 54 } 55 55 sout | "Finished";
Note: See TracChangeset
for help on using the changeset viewer.