X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Ftest_support.c;h=f0365909a7f170d59934656f49ffaba3a87a4511;hb=refs%2Fchanges%2F75%2F75%2F1;hp=49012c4e18c42cf9c0f888de37ac1f26410e990d;hpb=d710957ed5d73bf2da2ceea3f5a1a3c509275c30;p=ric-plt%2Flib%2Frmr.git diff --git a/test/test_support.c b/test/test_support.c index 49012c4..f036590 100644 --- a/test/test_support.c +++ b/test/test_support.c @@ -1,14 +1,14 @@ // : vi ts=4 sw=4 noet : /* ================================================================================== - Copyright (c) 2019 Nokia - Copyright (c) 2018-2019 AT&T Intellectual Property. + Copyright (c) 2019 Nokia + Copyright (c) 2018-2019 AT&T Intellectual Property. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -65,7 +65,7 @@ void sig_clean_exit( int sign ) { exit( 0 ); } -/* +/* Setup all of the signal handling for signals that we want to force a clean exit: term, intr, hup, quit, usr1/2 alarm, etc. All others we'll let default. */ @@ -74,7 +74,7 @@ static void set_signals( void ) { int sig_list[] = { SIGINT, SIGQUIT, SIGILL, SIGALRM, SIGTERM, SIGUSR1 , SIGUSR2 }; int i; int nele; // number of elements in the list - + nele = (int) ( sizeof( sig_list )/sizeof( int ) ); // convert raw size to the number of elements for( i = 0; i < nele; i ++ ) { memset( &sa, 0, sizeof( sa ) ); @@ -162,7 +162,7 @@ static rmr_mbuf_t* test_mk_msg( int len, int tr_len ) { new_msg->payload = new_msg->header + PAYLOAD_OFFSET( hdr ); new_msg->alloc_len = alen; new_msg->len = 0; - + return new_msg; } #endif