VirtualBox

Changeset 940 in vbox for trunk/src/VBox/Runtime/r3


Ignore:
Timestamp:
Feb 15, 2007 9:04:21 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
18675
Message:

inline -> DECLINLINE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/tcp.cpp

    r932 r940  
    137137 * @returns iprt status code.
    138138 */
    139 inline int rtTcpError(void)
     139DECLINLINE(int) rtTcpError(void)
    140140{
    141141#ifdef __WIN__
     
    153153 * @param   Sock    The new value.
    154154 */
    155 inline RTSOCKET rtTcpAtomicXchgSock(RTSOCKET volatile *pSock, const RTSOCKET Sock)
     155DECLINLINE(RTSOCKET) rtTcpAtomicXchgSock(RTSOCKET volatile *pSock, const RTSOCKET Sock)
    156156{
    157157    switch (sizeof(RTSOCKET))
     
    168168 * Changes the TCP server state.
    169169 */
    170 inline bool rtTcpServerSetState(PRTTCPSERVER pServer, RTTCPSERVERSTATE enmStateNew, RTTCPSERVERSTATE enmStateOld)
     170DECLINLINE(bool) rtTcpServerSetState(PRTTCPSERVER pServer, RTTCPSERVERSTATE enmStateNew, RTTCPSERVERSTATE enmStateOld)
    171171{
    172172    bool fRc;
     
    441441    RTSOCKET Sock = rtTcpAtomicXchgSock(pSock, NIL_RTSOCKET);
    442442    if (Sock != NIL_RTSOCKET)
    443     {
    444        shutdown(Sock, SHUT_RDWR);
    445     }
     443        shutdown(Sock, SHUT_RDWR);
    446444    return rtTcpClose(Sock, pszMsg);
    447445}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette