|
|
@@ -449,7 +449,7 @@ template<typename T> |
|
|
|
class ProductionQueue { // Production Queue Class
|
|
|
|
private:
|
|
|
|
Mutex myMutex; // Contains a mutex and
|
|
|
|
volatile int LatestSize; // a volatile (blinking light) size
|
|
|
|
volatile unsigned int LatestSize; // a volatile (blinking light) size
|
|
|
|
ProductionGateway myGateway; // integrated with a production
|
|
|
|
queue<T> myQueue; // gateway and a queue.
|
|
|
|
|
|
|
@@ -472,7 +472,7 @@ class ProductionQueue { |
|
|
|
myGateway.produce(); // indicator and tell the gateway.
|
|
|
|
} // When we're done it can be grabbed.
|
|
|
|
|
|
|
|
int size() { // To check the size we look at
|
|
|
|
unsigned int size() { // To check the size we look at
|
|
|
|
return LatestSize; // the blinking light.
|
|
|
|
}
|
|
|
|
};
|