- Timestamp:
- Nov 13, 2009, 8:05:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/tcpip/protlib/tp_over_tcp.h
r5284 r6922 35 35 #define TP_OVER_TCP_H 36 36 37 #include < ext/hash_map>37 #include <boost/unordered_map.hpp> 38 38 39 39 #include "tp.h" … … 202 202 203 203 /// store per receiver thread arguments, e.g. for signaling termination 204 typedef hash_map<pthread_t, receiver_thread_arg_t*> recv_thread_argmap_t;204 typedef boost::unordered_map<pthread_t, receiver_thread_arg_t*> recv_thread_argmap_t; 205 205 recv_thread_argmap_t recv_thread_argmap; 206 206 207 207 /// store sender thread related information 208 typedef hash_map<appladdress, FastQueue*> sender_thread_queuemap_t;208 typedef boost::unordered_map<appladdress, FastQueue*> sender_thread_queuemap_t; 209 209 sender_thread_queuemap_t senderthread_queuemap; 210 210
Note:
See TracChangeset
for help on using the changeset viewer.