From: Christian P. <cp...@us...> - 2005-01-16 01:59:31
|
Update of /cvsroot/pclasses/pclasses2/src/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16276/src/System Modified Files: Makefile.am Log Message: Added ThreadKey.h, ThreadKey.posix.cpp Index: Makefile.am =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/System/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.am 11 Jan 2005 14:56:28 -0000 1.7 +++ Makefile.am 16 Jan 2005 01:59:18 -0000 1.8 @@ -1,16 +1,16 @@ if WITH_POSIX_THREADS Thread_Sources = CriticalSection.generic.cpp Mutex.posix.cpp \ - Condition.posix.cpp Thread.posix.cpp + Condition.posix.cpp Thread.posix.cpp ThreadKey.posix.cpp endif if WITH_SOLARIS_THREADS Thread_Sources = CriticalSection.generic.cpp Mutex.solaris.cpp \ - Condition.solaris.cpp Thread.solaris.cpp + Condition.solaris.cpp Thread.solaris.cpp ThreadKey.solaris.cpp endif if WITH_WIN32_THREADS Thread_Sources = CriticalSection.win32.cpp Mutex.win32.cpp \ - Condition.win32.cpp Thread.win32.cpp + Condition.win32.cpp Thread.win32.cpp ThreadKey.win32.cpp endif if WITH_SYSV_SHAREDMEM |