diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-10 21:29:02 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-10 21:29:02 -0500 |
commit | f81e36d56ed79d1d4d06d928dbf095966261dbca (patch) | |
tree | 572ea460fc5ab28e46c6017e3d8ba197fdda94bf /extensions/test/stm/pipetest.cxx | |
parent | 53f428d9bf8f9648e21bf89cfbb406747536ed09 (diff) |
merge vosremoval-thread patch
Diffstat (limited to 'extensions/test/stm/pipetest.cxx')
-rw-r--r-- | extensions/test/stm/pipetest.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/test/stm/pipetest.cxx b/extensions/test/stm/pipetest.cxx index 39eb73b3c591..d957e19429f1 100644 --- a/extensions/test/stm/pipetest.cxx +++ b/extensions/test/stm/pipetest.cxx @@ -40,7 +40,7 @@ #include <vos/conditn.hxx> #include <vos/mutex.hxx> -#include <vos/thread.hxx> +#include <osl/thread.hxx> #include <string.h> @@ -54,7 +54,7 @@ using namespace usr; #endif class WriteToStreamThread : - public OThread + public osl::Thread { public: @@ -369,7 +369,7 @@ void OPipeTest::testMultithreading( const XInterfaceRef &r ) Sequence<BYTE> seqRead; // deletes itself - OThread *p = new WriteToStreamThread( output, iMax ); + osl::Thread *p = new WriteToStreamThread( output, iMax ); ERROR_ASSERT( p , "couldn't create thread for testing !\n" ); |