Ignore:
Timestamp:
Sep 25, 2005, 1:01:36 PM (20 years ago)
Author:
bird
Message:

o Implemented fchdir().
o Implemented inheritance of open directory handles. Unfortunately,

I ran out of size bits for the bundle type, so the SPM bit is no
longer compatible with earlier versions. The consequences
of this are related to inheritance and signaling - so recompile!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/InnoTekLIBC/backend.h

    • Property cvs2svn:cvs-rev changed from 1.34 to 1.35
    r2322 r2323  
    235235 */
    236236int __libc_Back_fsDirCurrentSet(const char *pszPath, int fDrive);
     237
     238/**
     239 * Changes the current directory of the process.
     240 *
     241 * @returns 0 on success.
     242 * @returns Negative error code (errno.h) on failure.
     243 * @param   fh          The handle of an open directory.
     244 * @param   fDrive      Force a change of the current drive too.
     245 */
     246int __libc_Back_fsDirCurrentSetFH(int fh, int fDrive);
    237247
    238248/**
Note: See TracChangeset for help on using the changeset viewer.