@@ -31,18 +31,18 @@ * @note When the thread pool is released, all threads will terminate after * they finish the job they are currently processing. */ @interface OFThreadPool: OFObject { - size_t size; - OFMutableArray *threads; - volatile int count; + size_t _size; + OFMutableArray *_threads; + volatile int _count; @public - OFList *queue; - OFCondition *queueCondition; - volatile int doneCount; - OFCondition *countCondition; + OFList *_queue; + OFCondition *_queueCondition; + volatile int _doneCount; + OFCondition *_countCondition; } /*! * @brief Returns a new thread pool with one thread for each core in the system. *