Ignore:
Timestamp:
Nov 13, 2009, 8:05:41 PM (14 years ago)
Author:
mies
Message:

replaced deprecated hash_map, hash_set classes with boost
added unsigned serialization
fixed more warnings
included -Wall to Makefile.am

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/transport/tcpip/protlib/tp_over_tcp.h

    r5284 r6922  
    3535#define TP_OVER_TCP_H
    3636
    37 #include <ext/hash_map>
     37#include <boost/unordered_map.hpp>
    3838
    3939#include "tp.h"
     
    202202 
    203203  /// 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;
    205205  recv_thread_argmap_t  recv_thread_argmap;
    206206
    207207  /// 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;
    209209  sender_thread_queuemap_t  senderthread_queuemap;
    210210 
Note: See TracChangeset for help on using the changeset viewer.