Some more debugging output switched on
This commit is contained in:
parent
0ce67de8c8
commit
a8247eb2f0
@ -5,8 +5,9 @@
|
|||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Circular buffer implementation, useful for buffering into data streams.
|
* @brief Circular buffer implementation, useful for buffering into data streams.
|
||||||
* Note that the deleteData() has to be called to increment the read pointer
|
* @details Note that the deleteData() has to be called to increment the read pointer
|
||||||
|
* @ingroup containers
|
||||||
*/
|
*/
|
||||||
class SimpleRingBuffer: public RingBufferBase<> {
|
class SimpleRingBuffer: public RingBufferBase<> {
|
||||||
public:
|
public:
|
||||||
|
@ -294,8 +294,8 @@ inline ReturnValue_t LocalPool<NUMBER_OF_POOLS>::reserveSpace(
|
|||||||
if (!ignoreFault) {
|
if (!ignoreFault) {
|
||||||
internalErrorReporter->storeFull();
|
internalErrorReporter->storeFull();
|
||||||
}
|
}
|
||||||
// error << "LocalPool( " << std::hex << getObjectId() << std::dec
|
error << "LocalPool( " << std::hex << getObjectId() << std::dec
|
||||||
// << " )::reserveSpace: Packet store is full." << std::endl;
|
<< " )::reserveSpace: Packet store is full." << std::endl;
|
||||||
}
|
}
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ iterator_t PUSDistributor::selectDestination() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (tcStatus != RETURN_OK) {
|
if (tcStatus != RETURN_OK) {
|
||||||
debug << "PUSDistributor::handlePacket: error with " << (int) tcStatus
|
debug << "PUSDistributor::handlePacket: error with 0x" << std::hex << (int) tcStatus
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
return this->queueMap.end();
|
return this->queueMap.end();
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user