Changeset 8:7b2598d1ea55 in vscpl


Ignore:
Timestamp:
01/19/13 16:21:52 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/xplane/hg/vscpl' '/'>, 'public')
Message:

Imported the I/O library for POSIX and the pseudo-random generator

Files:
27 added
4 edited

Legend:

Unmodified
Added
Removed
  • src/hu/varadiistvan/scpl/Makefile.am

    r6 r8  
    1313
    1414libvscpl_la_SOURCES=\
    15         dummy.cc
     15        PseudoRandom.cc
    1616
    1717libvscpl_la_LIBADD=
     
    3333        Thread.h                \
    3434        Mutex.h                 \
    35         CondVar.h
     35        CondVar.h               \
     36        PseudoRandom.h
  • src/hu/varadiistvan/scpl/io/Makefile.am

    r7 r8  
    2727        Failable.h              \
    2828        Waiter.h                \
     29        WaitableEvent.h         \
    2930        ReadingBuffer.h         \
    3031        WritingBuffer.h         \
    31         WaitableEvent.h
     32        BufferedStream.h        \
     33        LocalConnector.h        \
     34        LocalClientSocket.h     \
     35        LocalSocket.h           \
     36        LocalAcceptor.h         \
     37        LocalServerSocket.h
  • src/hu/varadiistvan/scpl/io/_posix/Makefile.am

    r7 r8  
    88        Waitable.cc             \
    99        Waiter.cc               \
     10        WaitableEvent.cc        \
    1011        BufferedStream.cc       \
    1112        ReadingBuffer.cc        \
    1213        WritingBuffer.cc        \
    13         WaitableEvent.cc
     14        Socket.cc               \
     15        Connector.cc            \
     16        ClientSocket.cc         \
     17        LocalConnector.cc       \
     18        LocalClientSocket.cc    \
     19        Acceptor.cc             \
     20        ServerSocket.cc         \
     21        LocalServerSocket.cc
    1422
    1523include_vscpl_io_posixdir=$(includedir)/hu/varadiistvan/scpl/io/_posix
     
    1725        Waitable.h              \
    1826        Waiter.h                \
     27        WaitableEvent.h         \
    1928        BufferedStream.h        \
    2029        StreamBuffer.h          \
    2130        ReadingBuffer.h         \
    2231        WritingBuffer.h         \
    23         WaitableEvent.h
     32        Socket.h                \
     33        Connector.h             \
     34        ClientSocket.h          \
     35        LocalConnector.h        \
     36        LocalClientSocket.h     \
     37        Acceptor.h              \
     38        ServerSocket.h          \
     39        LocalSocket.h           \
     40        LocalAcceptor.h         \
     41        LocalServerSocket.h
  • test/Makefile.am

    r7 r8  
    11INCLUDES=-I$(top_srcdir)/src -I$(top_builddir)/src
    22
    3 noinst_PROGRAMS=testthread testmutex testcondvar testevent
     3noinst_PROGRAMS=testthread testmutex testcondvar testevent testlocsock
    44
    55LDADD=../src/hu/varadiistvan/scpl/libvscpl.la
     
    1818
    1919testevent_SOURCES=testevent.cc
     20
     21testlocsock_SOURCES=testlocsock.cc
Note: See TracChangeset for help on using the changeset viewer.