[bridge] fix wait

This commit is contained in:
DH 2023-12-31 19:40:35 +03:00
parent ebe051f6fb
commit bbfcda5f10

View file

@ -223,13 +223,13 @@ private:
}
position = 0;
waitPuller(cmdSize);
waitPuller(0);
}
return position;
}
void waitPuller(std::uint64_t pullValue) {
while (header->pull < pullValue) {
while (header->pull != pullValue) {
;
}
}