Changeset 3630


Ignore:
Timestamp:
May 17, 2008, 12:45:46 PM (17 years ago)
Author:
bird
Message:

Some build fixes.

Location:
trunk/libc/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/libc/src/kNIX/filehandles.c

    r3373 r3630  
    577577        __LIBC_PFH pFH = gpapFHs[iFH];
    578578        if (pFH)
    579             __libc_FHClose(iFH);
     579            __libc_Back_ioClose(iFH);
    580580    }
    581581
  • trunk/libc/src/kNIX/os2/fs-os2.c

    r3289 r3630  
    284284    PPIB pPib;
    285285    DosGetInfoBlocks(&pTib, &pPib);
    286     rc = DosQueryModuleName(pPib->pib_hmte, sizeof(__libc_gszExecPath), &__libc_gszExecPath[0]);
     286    APIRET rc = DosQueryModuleName(pPib->pib_hmte, sizeof(__libc_gszExecPath), &__libc_gszExecPath[0]);
    287287    if (!rc)
    288288    {
     
    452452void __libc_back_fsUpdateUnixRootOS(const char *pszUnixRoot)
    453453{
    454     gaRewriteRule.pszTo = "/";
    455     gaRewriteRule.cchTo = 1;
     454    gUnixRootRewriteRule.pszTo = "/";
     455    gUnixRootRewriteRule.cchTo = 1;
    456456}
    457457
  • trunk/libc/src/kNIX/os2/tcpipver.c

    r3383 r3630  
    255255
    256256    /*
    257      * Unlink from our list (rc list must correspond to __libc_FHClose!).
     257     * Unlink from our list (rc list must correspond to __libc_Back_ioClose!).
    258258     */
    259259    if (    !rc
  • trunk/libc/src/libsocket/socketpair.c

    r2434 r3630  
    3232#define __LIBC_LOG_GROUP __LIBC_LOG_GRP_SOCKET
    3333#include <InnoTekLIBC/logstrict.h>
     34#include <klibc/backend.h>
    3435#include "socket.h"
    3536
     
    149150        }
    150151        __libsocket_soclose(osfd[1]);
    151         __libc_FHClose(fh1);
     152        __libc_Back_ioClose(fh1);
    152153    }
    153154    else
Note: See TracChangeset for help on using the changeset viewer.