diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-04-27 09:54:08 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-04-27 09:54:08 +0000 |
commit | 896c0d68a114b2d7d50d937d428f4832f8860c27 (patch) | |
tree | 273dc37e788b3f83133d51f75475a0cc929db65f /sal/osl/w32/pipe.c | |
parent | 70326d58710a4832c97e203ccbf4b36c6a0b960c (diff) |
deprecated destroyPipe and copyPipe removed
Diffstat (limited to 'sal/osl/w32/pipe.c')
-rw-r--r-- | sal/osl/w32/pipe.c | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/sal/osl/w32/pipe.c b/sal/osl/w32/pipe.c index d8d434e6a..e18dd52d5 100644 --- a/sal/osl/w32/pipe.c +++ b/sal/osl/w32/pipe.c @@ -2,9 +2,9 @@ * * $RCSfile: pipe.c,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: jbu $ $Date: 2001-03-14 16:30:30 $ + * last change: $Author: jbu $ $Date: 2001-04-27 10:54:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -630,23 +630,6 @@ void SAL_CALL osl_releasePipe( oslPipe pPipe ) __osl_destroyPipeImpl( pPipe ); } } -/*****************************************************************************/ -/* osl_copyPipe */ -/*****************************************************************************/ -oslPipe SAL_CALL osl_copyPipe(oslPipe pPipe) -{ - osl_acquirePipe( pPipe ); - return pPipe; -} - - -/*****************************************************************************/ -/* osl_destroyPipe */ -/*****************************************************************************/ -void SAL_CALL osl_destroyPipe(oslPipe pPipe) -{ - osl_releasePipe( pPipe ); -} void SAL_CALL osl_closePipe( oslPipe pPipe ) { @@ -713,7 +696,7 @@ void SAL_CALL osl_closePipe( oslPipe pPipe ) while (pAccept = pPipe->m_Acceptions) { pPipe->m_Acceptions = pAccept->m_Next; - osl_destroyPipe(pAccept); + osl_releasePipe(pAccept); } osl_releaseMutex(pPipe->m_Mutex); |