summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ad074501..8f99cf1d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -17,6 +17,8 @@ int forwardToPrimary(SingleInstance& instance, const cl::CommandLine& cl);
int main(int argc, char *argv[])
{
+ TimeThis tt("main()");
+
MOShared::SetThisThreadName("main");
setExceptionHandlers();
@@ -35,6 +37,8 @@ int main(int argc, char *argv[])
return forwardToPrimary(instance, cl);
}
+ tt.stop();
+
return app.run(instance);
}