mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-24 23:30:03 +02:00
removing the print
This commit is contained in:
parent
03d9e1d182
commit
960dc5c62f
@ -108,9 +108,9 @@ void Fifo::GetNewAddress(char*& address) {
|
||||
if (temp < status_fifoFree)
|
||||
status_fifoFree = temp;
|
||||
fifoFree->pop(address);
|
||||
temp = fifoFree->getSemValue();
|
||||
/*temp = fifoFree->getSemValue();
|
||||
if (temp < status_fifoFree)
|
||||
status_fifoFree = temp;
|
||||
status_fifoFree = temp;*/
|
||||
}
|
||||
|
||||
void Fifo::PushAddress(char*& address) {
|
||||
@ -118,9 +118,9 @@ void Fifo::PushAddress(char*& address) {
|
||||
if (temp > status_fifoBound)
|
||||
status_fifoBound = temp;
|
||||
while(!fifoBound->push(address));
|
||||
temp = fifoBound->getSemValue();
|
||||
/*temp = fifoBound->getSemValue();
|
||||
if (temp > status_fifoBound)
|
||||
status_fifoBound = temp;
|
||||
status_fifoBound = temp;*/
|
||||
}
|
||||
|
||||
void Fifo::PopAddress(char*& address) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user