Changeset 5:55892b4e7748 in vscpl


Ignore:
Timestamp:
01/19/13 14:07:10 (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 conditional variable implementation from xplcommon

Files:
6 added
4 edited

Legend:

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

    r1 r5  
    2626include_vscpl_HEADERS=\
    2727        config.h                \
    28         Thread.h
     28        Thread.h                \
     29        Mutex.h                 \
     30        CondVar.h
  • src/hu/varadiistvan/scpl/_posix/Makefile.am

    r1 r5  
    22
    33libvscpl_posix_la_SOURCES =     \
    4         Thread.cc
     4        Thread.cc               \
     5        CondVar.cc
    56
    67include_vscpl_posixdir=$(includedir)/hu/varadiistvan/scpl/_posix
    78include_vscpl_posix_HEADERS=\
    8         Thread.h
     9        Thread.h                \
     10        Mutex.h                 \
     11        CondVar.h
  • src/hu/varadiistvan/scpl/_win32/Makefile.am

    r1 r5  
    22
    33libvscpl_win32_la_SOURCES =     \
    4         Thread.cc
     4        Thread.cc               \
     5        CondVar.cc
    56
    67include_win32_posixdir=$(includedir)/hu/varadiistvan/scpl/_win32
    78include_win32_posix_HEADERS=\
    8         Thread.h
     9        Thread.h                \
     10        CondVar.h
  • test/Makefile.am

    r4 r5  
    11INCLUDES=-I$(top_srcdir)/src -I../src/hu/varadiistvan/scpl
    22
    3 noinst_PROGRAMS=testthread testmutex
     3noinst_PROGRAMS=testthread testmutex testcondvar
    44
    55LDADD=../src/hu/varadiistvan/scpl/libvscpl.la
     
    1414
    1515testmutex_SOURCES=testmutex.cc
     16
     17testcondvar_SOURCES=testcondvar.cc
Note: See TracChangeset for help on using the changeset viewer.