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/timer.h

    r18340 r18476  
    2828struct timer { 
    2929private: 
    30         class timer_thread : public pthread_thread<timer_thread> { 
     30        class timer_thread { 
    3131        public: 
    3232                timer_thread(double interval_sec, void (*callback)(void*), void* obj) : 
    33                         pthread_thread<timer_thread>(this), 
    3433                        m_interval_usec(interval_sec * 1000 * 1000), 
    3534                        m_callback(callback),