Skip to content

Commit

Permalink
Merge pull request #411 from YoheiKakiuchi/update_message
Browse files Browse the repository at this point in the history
update message of timeover on hrpEC
  • Loading branch information
fkanehiro committed Nov 28, 2014
2 parents 181ef38 + 8b30b99 commit 53d2031
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ec/hrpEC/hrpEC-common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,10 @@ namespace RTC
if (dt > period_sec*nsubstep){
m_profile.timeover++;
#ifdef NDEBUG
fprintf(stderr, "Timeover: processing time = %4.1f[ms]\n", dt*1e3);
fprintf(stderr, "[%d.%6.6d] Timeover: processing time = %4.2f[ms]\n",
tv.tv_sec, tv.tv_usec, dt*1e3);
for (unsigned int i=0; i< processes.size(); i++){
fprintf(stderr, "%4.1f, ", processes[i]*1e3);
fprintf(stderr, "%4.2f, ", processes[i]*1e3);
}
fprintf(stderr, "\n");
#endif
Expand Down

0 comments on commit 53d2031

Please sign in to comment.