summaryrefslogtreecommitdiff
path: root/sal/osl/unx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-04-27 10:01:32 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-04-27 10:01:32 +0000
commitb632e53f847dd922ffb6decfc34e8303a85643fd (patch)
treee430a23e12bdbae73b2b932293b3d84b39a0f080 /sal/osl/unx
parent54a92a8d350ecd089328d3ce064984fd2981523e (diff)
deprecated osl_copySocket and osl_destroySocket removed
Diffstat (limited to 'sal/osl/unx')
-rw-r--r--sal/osl/unx/socket.c21
1 files changed, 2 insertions, 19 deletions
diff --git a/sal/osl/unx/socket.c b/sal/osl/unx/socket.c
index 64a8088f38fc..488887b025b4 100644
--- a/sal/osl/unx/socket.c
+++ b/sal/osl/unx/socket.c
@@ -2,9 +2,9 @@
*
* $RCSfile: socket.c,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: mhu $ $Date: 2001-04-04 12:01:51 $
+ * last change: $Author: jbu $ $Date: 2001-04-27 11:01:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1855,15 +1855,6 @@ oslSocket SAL_CALL osl_createSocket(oslAddrFamily Family,
return pSocket;
}
-/*****************************************************************************/
-/* osl_copySocket */
-/*****************************************************************************/
-oslSocket SAL_CALL osl_copySocket(oslSocket pSocket)
-{
- osl_acquireSocket( pSocket );
- return pSocket;
-}
-
void SAL_CALL osl_acquireSocket(oslSocket pSocket)
{
osl_incrementInterlockedCount( &(pSocket->m_nRefCount ) );
@@ -1886,14 +1877,6 @@ void SAL_CALL osl_releaseSocket( oslSocket pSocket )
}
-/*****************************************************************************/
-/* osl_destroySocket */
-/*****************************************************************************/
-void SAL_CALL osl_destroySocket(oslSocket pSocket)
-{
- osl_releaseSocket( pSocket );
-}
-
/*****************************************************************************/
/* osl_closeSocket */