diff options
Diffstat (limited to 'src/drumkitloader.cc')
-rw-r--r-- | src/drumkitloader.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/drumkitloader.cc b/src/drumkitloader.cc index 7c532b4..3fa8420 100644 --- a/src/drumkitloader.cc +++ b/src/drumkitloader.cc @@ -69,9 +69,13 @@ void DrumKitLoader::skip() void DrumKitLoader::setFrameSize(size_t framesize) { + DEBUG(loader, "%s pre\n", __PRETTY_FUNCTION__); + { MutexAutolock l(mutex); this->framesize = framesize; framesize_semaphore.post(); // Signal that the framesize has been set. + } + DEBUG(loader, "%s post\n", __PRETTY_FUNCTION__); } bool DrumKitLoader::isDone() |