Changeset 34:ad3194cb9bef in xplcommon
- Timestamp:
- 01/02/13 16:46:04 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 6 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/xplcommon/Makefile.am
r32 r34 29 29 Thread.h \ 30 30 Mutex.h \ 31 CondVar.h \ 31 32 Failable.h \ 32 33 Waiter.h \ -
src/xplcommon/posix/Makefile.am
r32 r34 3 3 libxplcommon_posix_la_SOURCES = \ 4 4 Thread.cc \ 5 CondVar.cc \ 5 6 Waitable.cc \ 6 7 Waiter.cc \ … … 22 23 Thread.h \ 23 24 Mutex.h \ 25 CondVar.h \ 24 26 Waitable.h \ 25 27 Waiter.h \ -
src/xplcommon/posix/Mutex.h
r32 r34 79 79 */ 80 80 void unlock(); 81 82 friend class CondVar; 81 83 }; 82 84 -
src/xplcommon/win32/Makefile.am
r32 r34 3 3 libxplcommon_win32_la_SOURCES = \ 4 4 Thread.cc \ 5 CondVar.cc \ 5 6 Event.cc \ 6 7 Overlapped.cc \ … … 17 18 Thread.h \ 18 19 Mutex.h \ 20 CondVar.h \ 19 21 EventFailable.h \ 20 22 Event.h \ -
src/xplcommon/win32/Mutex.h
r33 r34 79 79 */ 80 80 void unlock(); 81 82 friend class CondVar; 81 83 }; 82 84 -
test/Makefile.am
r32 r34 1 1 INCLUDES=-I$(top_srcdir)/src 2 2 3 noinst_PROGRAMS=testevent testlocsock testblkstream testmutex 3 noinst_PROGRAMS=testevent testlocsock testblkstream testmutex testcondvar 4 4 if TARGET_API_POSIX 5 5 noinst_PROGRAMS+=testrandom … … 42 42 endif 43 43 44 testcondvar_SOURCES=testcondvar.cc 45 testcondvar_LDADD=../src/xplcommon/libxplcommon.la 46 if TARGET_API_POSIX 47 testcondvar_LDADD+=-lpthread 48 endif 49 if TARGET_API_WIN32 50 testcondvar_LDFLAGS=-static-libgcc -static-libstdc++ 51 endif 52 44 53 testrandom_SOURCES=testrandom.cc 45 54 testrandom_LDADD=../src/xplcommon/libxplcommon.la
Note:
See TracChangeset
for help on using the changeset viewer.