diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-04-27 10:01:32 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-04-27 10:01:32 +0000 |
commit | b632e53f847dd922ffb6decfc34e8303a85643fd (patch) | |
tree | e430a23e12bdbae73b2b932293b3d84b39a0f080 /sal/osl/unx | |
parent | 54a92a8d350ecd089328d3ce064984fd2981523e (diff) |
deprecated osl_copySocket and osl_destroySocket removed
Diffstat (limited to 'sal/osl/unx')
-rw-r--r-- | sal/osl/unx/socket.c | 21 |
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 */ |