Changeset 12764 for source/ariba/utility/system/SystemQueue.h
- Timestamp:
- Mar 14, 2014, 7:58:45 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/system/SystemQueue.h
r12763 r12764 174 174 typedef list<SystemEvent> EventQueue; 175 175 typedef std::priority_queue<SystemEvent, 176 std::vector<SystemEvent>, 176 std::vector<SystemEvent>, // [ TODO is vector the best underlay? ] 177 177 std::greater<SystemEvent> > PriorityEventQueue; 178 // typedef std::priority_queue<SystemEvent> PriorityEventQueue;179 // TODO is vector the best underlay?180 181 178 182 179 //******************************************************** … … 224 221 volatile bool running; 225 222 volatile bool aborted; 223 volatile bool unclean; 226 224 }; // class QueueThread 227 225
Note:
See TracChangeset
for help on using the changeset viewer.