summaryrefslogtreecommitdiffstats
path: root/src/vinylcontrol
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2015-05-31 23:21:07 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2019-11-15 10:58:20 +0100
commit0e0ed93718aaa47746192a86c96f604dc65e9b73 (patch)
treeb3d4537c5c032e5296621c1c3f8f8ad62adecb4d /src/vinylcontrol
parentd969cd3f5b7880a7d91ba7b53b3f45261bcd7884 (diff)
deactivated Event stats in some threads to reduce the momory usage in developer mode
Diffstat (limited to 'src/vinylcontrol')
-rw-r--r--src/vinylcontrol/vinylcontrolprocessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vinylcontrol/vinylcontrolprocessor.cpp b/src/vinylcontrol/vinylcontrolprocessor.cpp
index 5db2f0d55e..cc9a444ad1 100644
--- a/src/vinylcontrol/vinylcontrolprocessor.cpp
+++ b/src/vinylcontrol/vinylcontrolprocessor.cpp
@@ -82,7 +82,7 @@ void VinylControlProcessor::run() {
QThread::currentThread()->setObjectName(QString("VinylControlProcessor %1").arg(++id));
while (!m_bQuit) {
- Event::start("VinylControlProcessor");
+ //Event::start("VinylControlProcessor");
if (m_bReloadConfig) {
reloadConfig();
m_bReloadConfig = false;
@@ -130,7 +130,7 @@ void VinylControlProcessor::run() {
// Wait for a signal from the main thread or engine thread that we
// should wake up and process input.
- Event::end("VinylControlProcessor");
+ //Event::end("VinylControlProcessor");
m_waitForSampleMutex.lock();
m_samplesAvailableSignal.wait(&m_waitForSampleMutex);
m_waitForSampleMutex.unlock();