Merge branch 'TRAFODION-2884' of github.com:zcorrea/trafodion into TRAFODION-2884
Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/b565fb74 Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/b565fb74 Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/b565fb74 Branch: refs/heads/master Commit: b565fb746e47dfe4b9858e02a81a1b1bf63c1ac6 Parents: abf3c42 38935a4 Author: Zalo Correa <[email protected]> Authored: Wed Mar 28 17:04:12 2018 -0700 Committer: Zalo Correa <[email protected]> Committed: Wed Mar 28 17:04:12 2018 -0700 ---------------------------------------------------------------------- core/sqf/monitor/linux/nsreqqueue.cxx | 10 +++++----- core/sqf/src/seabed/test/go141 | 3 +++ core/sqf/src/seabed/test/go190 | 3 +++ core/sqf/src/seabed/test/go22 | 2 +- core/sqf/src/seabed/test/go23 | 2 +- core/sqf/src/seabed/test/go83 | 2 +- core/sqf/src/seabed/test/goall | 24 ++++++++++++------------ core/sqf/src/seabed/test/gosetup | 2 ++ core/sqf/src/seabed/test/goshell | 2 +- core/sqf/src/seabed/test/goshell124 | 4 ++++ core/sqf/src/seabed/test/goshell49 | 6 +++--- core/sqf/src/seabed/test/t209ms.cpp | 4 ++++ core/sqf/src/seabed/test/t226fs.cpp | 4 ++++ core/sqf/src/seabed/test/t279ms.cpp | 12 +++++++++--- 14 files changed, 53 insertions(+), 27 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/b565fb74/core/sqf/monitor/linux/nsreqqueue.cxx ---------------------------------------------------------------------- diff --cc core/sqf/monitor/linux/nsreqqueue.cxx index e189929,aeb1d53..f174cf2 --- a/core/sqf/monitor/linux/nsreqqueue.cxx +++ b/core/sqf/monitor/linux/nsreqqueue.cxx @@@ -77,18 -77,8 +77,18 @@@ void CRequest::monreply(struct message_ msg->u.reply.u.process_info.return_code); } break; + case ReplyType_ProcessInfoNs: + size += sizeof(struct ProcessInfoNs_reply_def); + if (trace_settings & (TRACE_PROCESS_DETAIL)) + { + trace_printf("%s@%d reply type=%d(ProcessInfoNs), size=%d, sock=%d\n", method_name, __LINE__, + msg->u.reply.type, size, sockFd); + trace_printf("%s@%d process-info reply. rc=%d\n", method_name, __LINE__, + msg->u.reply.u.process_info.return_code); + } + break; default: - if (trace_settings & (TRACE_PROCESS_DETAIL)) + if (trace_settings & (TRACE_NS | TRACE_PROCESS_DETAIL)) { trace_printf("%s@%d reply type=%d(?), size=%d, sock=%d\n", method_name, __LINE__, msg->u.reply.type, size, sockFd);
