From: Dejan L. <dlo...@us...> - 2004-06-10 22:09:14
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32082/rtk Modified Files: PriorityQueue.h Log Message: Index: PriorityQueue.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/PriorityQueue.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PriorityQueue.h 10 Jun 2004 21:59:24 -0000 1.2 --- PriorityQueue.h 10 Jun 2004 22:09:03 -0000 1.3 *************** *** 177,181 **** --- 177,183 ---- bool _sort; /// How priority queue is sorted QueueNode* _head; /// Pointer to _head element of the List. + QueueNode* _tail; /// Pointer to _tail element of the List. PriorityNode* _priority_head; /// Pointer to priority head_element of the list + FreeDataFunc _free_func; /// Free data function Mutex* _mutex; |