Commit c4cdb870 authored by Fabrice Fontaine's avatar Fabrice Fontaine

profiled_coordinator.hpp: fix syntax error

Fix af299e7e by adding missing ;
Signed-off-by: default avatarFabrice Fontaine <fontaine.fabrice@gmail.com>
parent 9c5900f8
...@@ -116,7 +116,7 @@ public: ...@@ -116,7 +116,7 @@ public:
#ifdef RUSAGE_THREAD #ifdef RUSAGE_THREAD
::getrusage(RUSAGE_THREAD, &ru); ::getrusage(RUSAGE_THREAD, &ru);
#else #else
::getrusage(RUSAGE_SELF, &ru) ::getrusage(RUSAGE_SELF, &ru);
#endif #endif
m.usr = to_usec(ru.ru_utime); m.usr = to_usec(ru.ru_utime);
m.sys = to_usec(ru.ru_stime); m.sys = to_usec(ru.ru_stime);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment