Show
Ignore:
Timestamp:
08/27/08 22:02:39 (4 months ago)
Author:
frsyuki
Message:

lang/c/mpio: added mp::multiplex

Files:
1 modified

Legend:

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

    r18311 r18340  
    3131                virtual ~handler(); 
    3232        public: 
    33                 virtual int read_event() = 0; 
    34                 virtual void unbind() = 0; 
     33                virtual void read_event() = 0; 
    3534                virtual void connected() {} 
    3635        public: 
     
    114113}; 
    115114 
     115typedef manager::handler handler; 
     116 
    116117template <typename Handler> 
    117118inline void add(int fd); 
     
    124125inline void send_data(int fd, char* buf, size_t len); 
    125126 
     127// FIXME interface 
    126128inline void send_message(int fd, callback_message* msg); 
    127129