Show
Ignore:
Timestamp:
08/30/08 15:15:48 (4 months ago)
Author:
frsyuki
Message:

lang/c/mpio: added mp::iothreads::reader and mp::iothreads::writer

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/c/mpio/trunk/mp/iothreads/listen.h

    r18340 r18476  
    3131struct listener { 
    3232private: 
    33         class listen_thread : public pthread_thread<listen_thread> { 
     33        class listen_thread { 
    3434        public: 
    3535                listen_thread(int lsock, void (*callback)(void*, int fd), void* obj) : 
    36                         pthread_thread<listen_thread>(this), 
    3736                        m_lsock(lsock), m_callback(callback), m_obj(obj) {} 
    3837                void operator() ()