diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-06-08 15:00:19 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-06-08 15:00:19 +0000 |
commit | a6fef84e96b40332b5284a971e02b3b662fbfe1b (patch) | |
tree | 2ba933bd5c664e5159fcae34b6bd6172e189f000 /io/source | |
parent | fa6dc725513aa93df54dd302e40107b0cd4e1749 (diff) |
#87994# osl_freeThreadHandle() is replaced by osl_destroyThread
Diffstat (limited to 'io/source')
-rw-r--r-- | io/source/stm/opump.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx index f7524cd771b3..0aa278f74ec8 100644 --- a/io/source/stm/opump.cxx +++ b/io/source/stm/opump.cxx @@ -2,9 +2,9 @@ * * $RCSfile: opump.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: jbu $ $Date: 2001-03-20 09:04:37 $ + * last change: $Author: jbu $ $Date: 2001-06-08 15:57:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -151,7 +151,7 @@ Pump::~Pump() { // exit gracefully osl_joinWithThread( m_aThread ); - osl_freeThreadHandle( m_aThread ); + osl_destroyThread( m_aThread ); } void Pump::fireError( list< Reference< XStreamListener > > &aList , Any & exception ) |