PcloudStimBuff: call OClCollMessEngn::setup/finalize in start/stop

This commit is contained in:
2025-11-08 12:22:11 -04:00
parent 5ff6a4ee0b
commit d8a3999ad5
@@ -69,6 +69,7 @@ void PcloudStimulusBuffer::start()
{
// Call ioUringAssemblyEngine setup() as the final step
ioUringAssemblyEngine.setup();
openClCollatingAndMeshingEngine.setup();
// Call base class start() as the final step
StimulusBuffer::start();
}
@@ -78,6 +79,7 @@ void PcloudStimulusBuffer::stop()
// Call base class stop() as the first step
StimulusBuffer::stop();
// Call ioUringAssemblyEngine stop() as the final step
openClCollatingAndMeshingEngine.finalize();
ioUringAssemblyEngine.finalize();
}