History log of /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/tirpc_bottomlevel_clnt_call_scalability.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
cf0d626fe6224db3c714843dc7007e9f81d94a80 23-Sep-2014 Cyril Hrubis <chrubis@suse.cz> Remove all useless NULL casts.

Created with coccinelle patch:

@@
type T;
@@
-(T) NULL
+ NULL

Hint:
You have to disable isomorphisms by pointing --iso-file to empty file

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/tirpc_bottomlevel_clnt_call_scalability.c
d218f348c12b42a78fa0306d9a033bfa4f67238b 23-Sep-2014 Cyril Hrubis <chrubis@suse.cz> Remove useless malloc() casts.

Created with coccinelle patch:

@@
expression E1, E2;
type T;
@@
- E1 = (T)malloc(E2)
+ E1 = malloc(E2)

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/tirpc_bottomlevel_clnt_call_scalability.c
aa19e0d71e2704407d353559f95a2231edb264ee 27-Aug-2014 Cyril Hrubis <chrubis@suse.cz> tirpc: Fix numerous errors and warnings.

Apart from minor printf() formatting fixes and removal of unused
variables this commit adds "#include <pthread.h>" to testcases that are
utilizing pthreads and fixes argument passing to the pthread start
function.

There should be no changes in functionality except for one testcase that
was missing "return test_status;" at the end of the main().

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/tirpc_bottomlevel_clnt_call_scalability.c
5a02c68dc1db4b52eedb00e32e32a958f7f5df87 25-Mar-2014 Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> rpc-tirpc: renamed the test suite binaries

Using the following scheme:
rpc_stdcall_callrpc/1-basic.c -> rpc_stdcall_callrpc/rpc_callrpc.c
rpc_stdcall_callrpc/2-stress.c -> rpc_stdcall_callrpc/rpc_callrpc_stress.c

tirpc_simple_rpc_broadcast/1-basic.c -> tirpc_rpc_broadcast.c
tirpc_simple_rpc_broadcast/2-stress.c -> tirpc_rpc_broadcast_stress.c

The only exception is the clnt_call binaries in tirpc subdirectory.

Signed-off-by: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_bottomlevel_clnt_call/tirpc_bottomlevel_clnt_call_scalability.c