summaryrefslogtreecommitdiff
path: root/sal/osl/unx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-04-27 10:02:15 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-04-27 10:02:15 +0000
commit730e4ba94318e25b13a3ed3b27d8625ccde8c938 (patch)
tree10a853b35e93104f41a514c0517ec4172b63758b /sal/osl/unx
parentb632e53f847dd922ffb6decfc34e8303a85643fd (diff)
deprecated osl_copyPipe and osl_destroyPipe removed
Diffstat (limited to 'sal/osl/unx')
-rw-r--r--sal/osl/unx/pipe.c21
1 files changed, 2 insertions, 19 deletions
diff --git a/sal/osl/unx/pipe.c b/sal/osl/unx/pipe.c
index 3d387b0136d8..07cde86adbdd 100644
--- a/sal/osl/unx/pipe.c
+++ b/sal/osl/unx/pipe.c
@@ -2,9 +2,9 @@
*
* $RCSfile: pipe.c,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: mhu $ $Date: 2001-03-30 16:31:35 $
+ * last change: $Author: jbu $ $Date: 2001-04-27 11:02:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -330,15 +330,6 @@ oslPipe SAL_CALL osl_psz_createPipe(const sal_Char *pszPipeName, oslPipeOptions
return NULL;
}
-/*****************************************************************************/
-/* osl_copyPipe */
-/*****************************************************************************/
-oslPipe SAL_CALL osl_copyPipe(oslPipe pPipe)
-{
- osl_acceptPipe( pPipe );
- return pPipe;
-}
-
void SAL_CALL osl_acquirePipe( oslPipe pPipe )
{
osl_incrementInterlockedCount( &(pPipe->m_nRefCount) );
@@ -438,14 +429,6 @@ void SAL_CALL osl_closePipe( oslPipe pPipe )
/*****************************************************************************/
-/* osl_destroyPipe */
-/*****************************************************************************/
-void SAL_CALL osl_destroyPipe(oslPipe pPipe)
-{
- osl_releasePipe( pPipe );
-}
-
-/*****************************************************************************/
/* osl_acceptPipe */
/*****************************************************************************/
oslPipe SAL_CALL osl_acceptPipe(oslPipe pPipe)