瀏覽代碼

Corrected ProductionQueue.size() - Now unsigned int, not int.

git-svn-id: https://svn.microneil.com/svn/CodeDweller/trunk@10 d34b734f-a00e-4b39-a726-e4eeb87269ab
wx
madscientist 15 年之前
父節點
當前提交
a9b1bc7083
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      threading.hpp

+ 2
- 2
threading.hpp 查看文件

@@ -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.
}
};

Loading…
取消
儲存