Removed unused code
This commit is contained in:
parent
e5e85bcff9
commit
2cb254a556
@ -80,14 +80,6 @@ uint32_t InternalErrorReporter::getAndResetQueueHits() {
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t InternalErrorReporter::getQueueHits() {
|
|
||||||
uint32_t value;
|
|
||||||
mutex->lockMutex(timeoutType, timeoutMs);
|
|
||||||
value = queueHits;
|
|
||||||
mutex->unlockMutex();
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
void InternalErrorReporter::incrementQueueHits() {
|
void InternalErrorReporter::incrementQueueHits() {
|
||||||
mutex->lockMutex(timeoutType, timeoutMs);
|
mutex->lockMutex(timeoutType, timeoutMs);
|
||||||
queueHits++;
|
queueHits++;
|
||||||
@ -103,14 +95,6 @@ uint32_t InternalErrorReporter::getAndResetTmHits() {
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t InternalErrorReporter::getTmHits() {
|
|
||||||
uint32_t value;
|
|
||||||
mutex->lockMutex(timeoutType, timeoutMs);
|
|
||||||
value = tmHits;
|
|
||||||
mutex->unlockMutex();
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
void InternalErrorReporter::incrementTmHits() {
|
void InternalErrorReporter::incrementTmHits() {
|
||||||
mutex->lockMutex(timeoutType, timeoutMs);
|
mutex->lockMutex(timeoutType, timeoutMs);
|
||||||
tmHits++;
|
tmHits++;
|
||||||
@ -128,14 +112,6 @@ uint32_t InternalErrorReporter::getAndResetStoreHits() {
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t InternalErrorReporter::getStoreHits() {
|
|
||||||
uint32_t value;
|
|
||||||
mutex->lockMutex(timeoutType, timeoutMs);
|
|
||||||
value = storeHits;
|
|
||||||
mutex->unlockMutex();
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
void InternalErrorReporter::incrementStoreHits() {
|
void InternalErrorReporter::incrementStoreHits() {
|
||||||
mutex->lockMutex(timeoutType, timeoutMs);
|
mutex->lockMutex(timeoutType, timeoutMs);
|
||||||
storeHits++;
|
storeHits++;
|
||||||
|
@ -74,15 +74,12 @@ class InternalErrorReporter : public SystemObject,
|
|||||||
uint32_t storeHits = 0;
|
uint32_t storeHits = 0;
|
||||||
|
|
||||||
uint32_t getAndResetQueueHits();
|
uint32_t getAndResetQueueHits();
|
||||||
uint32_t getQueueHits();
|
|
||||||
void incrementQueueHits();
|
void incrementQueueHits();
|
||||||
|
|
||||||
uint32_t getAndResetTmHits();
|
uint32_t getAndResetTmHits();
|
||||||
uint32_t getTmHits();
|
|
||||||
void incrementTmHits();
|
void incrementTmHits();
|
||||||
|
|
||||||
uint32_t getAndResetStoreHits();
|
uint32_t getAndResetStoreHits();
|
||||||
uint32_t getStoreHits();
|
|
||||||
void incrementStoreHits();
|
void incrementStoreHits();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user