summaryrefslogtreecommitdiff
path: root/include/comphelper/profilezone.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2021-04-27 09:20:32 +0300
committerTor Lillqvist <tml@collabora.com>2021-04-29 14:10:53 +0200
commitef865bba15aa351dd32b909eedac55d1e2a1771b (patch)
treebd3f8a3711e10b713b21c73acf3230aeeb567f23 /include/comphelper/profilezone.hxx
parent27cf65fb14e23f9afe1a45d7a3f1c8a997f07660 (diff)
Extend the trace event API with instant events
As a preparetion for further work, refactor ProfileZone into a base class TraceEvent and a derived class ProfileZone. Change-Id: I3a93c79f46ffc5768ddaf338789fe2daa225ef4d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114776 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'include/comphelper/profilezone.hxx')
-rw-r--r--include/comphelper/profilezone.hxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/include/comphelper/profilezone.hxx b/include/comphelper/profilezone.hxx
index 3f758d88d987..bddf313f62d2 100644
--- a/include/comphelper/profilezone.hxx
+++ b/include/comphelper/profilezone.hxx
@@ -12,24 +12,15 @@
#include <sal/config.h>
-#include <atomic>
-
-#include <osl/process.h>
-#include <osl/time.h>
-#include <com/sun/star/uno/Sequence.h>
-#include <comphelper/comphelperdllapi.h>
-#include <rtl/ustring.hxx>
+#include <comphelper/traceevent.hxx>
// implementation of XToolkitExperimental profiling API
namespace comphelper
{
-class COMPHELPER_DLLPUBLIC ProfileZone
+class COMPHELPER_DLLPUBLIC ProfileZone : public TraceEvent
{
-private:
- static std::atomic<bool> s_bRecording; // true during recording
- static int s_nNesting;
const char *m_sProfileId;
long long m_nCreateTime;
int m_nPid;