X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=test%2Fapp_test%2Fcaller.c;h=8f936039618097cac9d2ffa50bffb3990499eedc;hb=02e8d49f42d94b51494977aa0d6f67479f1ceb1c;hp=7b7336a879ee2ed2d1c43196e6773636ba51d608;hpb=412d53dfa2f9b5b56a448797d0dfec3b0f11f666;p=ric-plt%2Flib%2Frmr.git diff --git a/test/app_test/caller.c b/test/app_test/caller.c index 7b7336a..8f93603 100644 --- a/test/app_test/caller.c +++ b/test/app_test/caller.c @@ -64,6 +64,7 @@ #include #define TRACE_SIZE 40 // bytes in header to provide for trace junk +#define WBUF_SIZE 1024 /* Thread data @@ -108,13 +109,15 @@ static void* mk_calls( void* data ) { int drops = 0; int fail_count = 0; // # of failure sends after first successful send int successful = 0; // set to true after we have a successful send - char wbuf[1024]; + char* wbuf = NULL; char xbuf[1024]; // build transaction string here char trace[1024]; int xaction_id = 1; char* tok; int state = 0; + wbuf = (char *) malloc( sizeof( char ) * WBUF_SIZE ); + if( (control = (tdata_t *) data) == NULL ) { fprintf( stderr, "thread data was nil; bailing out\n" ); } @@ -141,7 +144,7 @@ static void* mk_calls( void* data ) { rt_count++; } while( sbuf != NULL && sbuf->state == RMR_ERR_RETRY ) { // send blocked; keep trying - sbuf = rmr_mt_call( control->mrc, sbuf, control->id, 100 ); // call and wait up to 100ms for a response + sbuf = rmr_mt_call( control->mrc, sbuf, control->id, 5000 ); // call and wait up to 5s for a response } if( sbuf != NULL ) { @@ -163,7 +166,7 @@ static void* mk_calls( void* data ) { break; default: - fprintf( stderr, "unexpected error: tid=%d rmr-state=%d ernro=%d\n", control->id, sbuf->state, errno ); + fprintf( stderr, " unexpected error: tid=%d rmr-state=%d ernro=%d\n", control->id, sbuf->state, errno ); sbuf = rmr_alloc_msg( control->mrc, 512 ); // allocate a sendable buffer if( successful ) { fail_count++; // count failures after first successful message