Ignore:
Timestamp:
Feb 6, 2006, 11:12:16 PM (20 years ago)
Author:
bird
Message:

#50: Inherit umask.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/include/InnoTekLIBC/sharedpm.h

    r2323 r2538  
    278278
    279279/**
    280  * SPM fs inherit data.
     280 * The SPM fs inherit data, part 1.
     281 * The FS data is stored in two sections for legacy reasons.
    281282 */
    282283typedef struct __libc_SPMInhFS
     
    291292/** Pointer to FS inherit data. */
    292293typedef __LIBC_SPMINHFS *__LIBC_PSPMINHFS;
     294
     295/**
     296 * SPM fs inherit data, part two.
     297 */
     298typedef struct __libc_SPMInhFS2
     299{
     300    /** The size of this structure. */
     301    unsigned    cb;
     302    /** The umask value. */
     303    unsigned    fUMask;
     304} __LIBC_SPMINHFS2;
     305/** Pointer to FS inherit data, part two. */
     306typedef __LIBC_SPMINHFS2 *__LIBC_PSPMINHFS2;
    293307
    294308/**
     
    326340     * All the strings are NULL terminated and referenced by offset. */
    327341    char                   *pszStrings;
     342    /** More file system stuff. */
     343    __LIBC_PSPMINHFS2       pFS2;
    328344} __LIBC_SPMINHERIT;
    329345/** Pointer to inherit data. */
Note: See TracChangeset for help on using the changeset viewer.