Ignore:
Timestamp:
Sep 27, 2004, 4:15:07 AM (21 years ago)
Author:
bird
Message:

Big path handling change. Fixed wrong file headers. A new api or two. A bit of restructuring. And hopefully no new bug :-)

File:
1 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r1518 r1519  
    178178typedef __LIBC_SPMINHFHBSOCK *__LIBC_PSPMINHFHBSOCK;
    179179
     180/**
     181 * SPM fs inherit data.
     182 */
     183typedef struct __libc_SPMInhFS
     184{
     185    /** In Unix Tree global. */
     186    int         fInUnixTree;
     187    /** Size of the unix root. Only set if there's an official root. */
     188    size_t      cchUnixRoot;
     189    /** The current unix root if cchUnixRoot is non-zero. */
     190    char        szUnixRoot[1];
     191} __LIBC_SPMINHFS;
     192/** Pointer to FS inherit data. */
     193typedef __LIBC_SPMINHFS *__LIBC_PSPMINHFS;
     194
     195
    180196
    181197/**
     
    191207     * This is a succession of bundles terminating with a _END one. */
    192208    __LIBC_PSPMINHFHBHDR    pFHBundles;
     209    /** Pointer to the file system part. If NULL default values are assumed. */
     210    __LIBC_PSPMINHFS        pFS;
    193211
    194212    /** @todo Add signals and the other properties which are inherited. */
     
    559577 *
    560578 * @returns 0 on success.
    561  * @returns -1 and errno on failure.
     579 * @returns Negative error code (errno.h) on failure.
    562580 * @param   pLoadAvg    Where to store the load average samples.
    563581 * @param   puTimestamp Where to store the current timestamp.
     
    569587 *
    570588 * @returns 0 on success.
    571  * @returns -1 and errno on failure.
     589 * @returns Negative error code (errno.h) on failure.
    572590 * @param   pLoadAvg    Where to store the load average samples.
    573591 */
Note: See TracChangeset for help on using the changeset viewer.