Changeset 22280 for lang/c/mpio

Show
Ignore:
Timestamp:
10/28/08 15:10:00 (2 months ago)
Author:
frsyuki
Message:

lang/c/mpio: added mp::ipc_vector, a fast inter-process communication library using shared memory

Location:
lang/c/mpio/trunk
Files:
3 added
3 modified

Legend:

Unmodified
Added
Removed
  • lang/c/mpio/trunk/Makefile.am

    r22191 r22280  
    2929                mp/iothreads.h \ 
    3030                mp/iothreads_impl.h \ 
     31                mp/ipc_vector.h \ 
     32                mp/ipc_vector_impl.h \ 
    3133                mp/memory.h \ 
    3234                mp/mempool.h \ 
  • lang/c/mpio/trunk/mp/exception.h

    r22099 r22280  
    2929struct system_error : std::runtime_error { 
    3030        system_error(int errno_, const std::string& msg) : 
    31                 std::runtime_error(msg + strerror(errno_)) {} 
     31                std::runtime_error(msg + ": " + strerror(errno_)) {} 
    3232}; 
    3333 
  • lang/c/mpio/trunk/src/Makefile.am

    r22190 r22280  
    1313                iothreads_reader.cc \ 
    1414                iothreads_timer.cc \ 
    15                 iothreads_writer.cc 
     15                iothreads_writer.cc \ 
     16                ipc_vector.cc 
     17