Skip to content
Snippets Groups Projects
Commit c095e8b1 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Bug 61: Fixed compile warnings for optimized build

parent 5058ec7c
No related branches found
No related tags found
No related merge requests found
......@@ -45,15 +45,13 @@ class MyProcess : public Process
virtual void child()
{
pid_t pid = getpid();
pid_t ppid = getppid();
LOG_TRACE_FLOW_STR(AUTO_FUNCTION_NAME << ": pid = " << pid
<< "; ppid = " << ppid);
LOG_TRACE_FLOW_STR(AUTO_FUNCTION_NAME << ": pid = " << getpid()
<< "; ppid = " << getppid());
LOG_TRACE_STAT_STR(AUTO_FUNCTION_NAME
<< ": going to sleep for 2 seconds ...");
sleep(2);
LOG_TRACE_STAT_STR(AUTO_FUNCTION_NAME
<< ": pid #" << pid << " exiting ...");
<< ": pid #" << getpid() << " exiting ...");
exit(0);
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment