Changeset 2538 for branches/libc-0.6/src/emx/include
- Timestamp:
- Feb 6, 2006, 11:12:16 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/include/InnoTekLIBC/sharedpm.h
r2323 r2538 278 278 279 279 /** 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. 281 282 */ 282 283 typedef struct __libc_SPMInhFS … … 291 292 /** Pointer to FS inherit data. */ 292 293 typedef __LIBC_SPMINHFS *__LIBC_PSPMINHFS; 294 295 /** 296 * SPM fs inherit data, part two. 297 */ 298 typedef 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. */ 306 typedef __LIBC_SPMINHFS2 *__LIBC_PSPMINHFS2; 293 307 294 308 /** … … 326 340 * All the strings are NULL terminated and referenced by offset. */ 327 341 char *pszStrings; 342 /** More file system stuff. */ 343 __LIBC_PSPMINHFS2 pFS2; 328 344 } __LIBC_SPMINHERIT; 329 345 /** Pointer to inherit data. */
Note:
See TracChangeset
for help on using the changeset viewer.