[Type]
[Module]
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution] If the java process succedds, the return value is nonzero
[TestCase]
}
INFO("child return value : %d\n", dwRet);
- if (dwRet == -1) {
+ if (dwRet != 0) {
//child process is terminated with some problem.
//so qemu process will terminate, too. immediately.
exit(1);
//The low-order 8 bits are zero if the process exited normally.
INFO("child return value : %d\n", ret);
- if (ret == 0xff) {
+ if (ret != 0) {
//child process is terminated with some problem.
//so qemu process will terminate, too. immediately.
exit(1);