Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrency/actors/poison.cfa

    r41882628 r7edf912  
    1515        sout | "Finished";
    1616        {
    17                 actor_start();
     17                start_actor_system();
    1818                Server s[10];
    1919                for ( i; 10 ) {
    2020                        s[i] | finished_msg;
    2121                }
    22                 actor_stop();
     22                stop_actor_system();
    2323        }
    2424
    2525        sout | "Delete";
    2626        {
    27                 actor_start();
     27                start_actor_system();
    2828                for ( i; 10 ) {
    2929                        Server * s = alloc();
     
    3131                        (*s) | delete_msg;
    3232                }
    33                 actor_stop();
     33                stop_actor_system();
    3434        }
    3535
    3636        sout | "Destroy";
    3737        {
    38                 actor_start();
     38                start_actor_system();
    3939                Server s[10];
    4040                for ( i; 10 )
    4141                        s[i] | destroy_msg;
    42                 actor_stop();
     42                stop_actor_system();
    4343                for ( i; 10 )
    4444                        if (s[i].val != 777)
Note: See TracChangeset for help on using the changeset viewer.