Ignore:
Timestamp:
Sep 17, 2023, 11:19:08 AM (14 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
7edf912
Parents:
697c957
Message:

clean up command-line handling and I/O

File:
1 edited

Legend:

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

    r697c957 r50be8af  
    3636          case 2:
    3737                if ( strcmp( argv[1], "d" ) != 0 ) {                    // default ?
    38                         Times = atoi( argv[1] );
    39                         if ( Times < 1 ) goto Usage;
     38                        Times = ato( argv[1] );
     39                        if ( Times < 1 ) fallthru default;
    4040                } // if
    4141          case 1:                                                                                       // use defaults
    4242                break;
    4343          default:
    44           Usage:
    45                 sout | "Usage: " | argv[0] | " [ times (> 0) ]";
    46                 exit( EXIT_FAILURE );
     44                exit | "Usage: " | argv[0] | " [ times (> 0) ]";
    4745        } // switch
    4846
    49     printf("starting\n");
     47    sout | "starting";
    5048
    5149    executor e{ 0, 1, 1, false };
    5250    start_actor_system( e );
    5351
    54     printf("started\n");
     52    sout | "started";
    5553
    5654    derived_msg * d_msg = alloc();
     
    6058    *d_actor | *d_msg;
    6159
    62     printf("stopping\n");
     60    sout | "stopping";
    6361
    6462    stop_actor_system();
    6563
    66     printf("stopped\n");
     64    sout | "stopped";
    6765
    6866    return 0;
Note: See TracChangeset for help on using the changeset viewer.