Changeset 2277
- Timestamp:
- Aug 13, 2005, 9:04:16 PM (20 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/ChangeLog.LIBC
-
Property cvs2svn:cvs-rev
changed from
1.114
to1.115
r2276 r2277 2 2 3 3 TODO: open replace on RAMFS fails with error 32! 4 5 2005-08-13: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - libc: 7 o Added SH_COMPAT to share.h and emulate it as SH_DENYNO (just like watcom). 8 The SH_COMPAT shareing mode is not available to OS/2 processes, only DOS / os2krnl. 4 9 5 10 2005-08-02: knut st. osmundsen <bird-gccos2-spam@anduin.net> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/share.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r2276 r2277 1 1 /* share.h,v 1.2 2004/09/14 22:27:35 bird Exp */ 2 2 /** @file 3 * EMX. VAC legacy. 3 * EMX. VAC / MSC legacy. 4 * 5 * _sopen(),_vsopen() flags. 4 6 */ 5 7 … … 7 9 #define _SHARE_H 8 10 11 #define SH_COMPAT 0x00 9 12 #define SH_DENYRW 0x10 10 13 #define SH_DENYWR 0x20 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/b_ioFileOpen.c
-
Property cvs2svn:cvs-rev
changed from
1.8
to1.9
r2276 r2277 38 38 #include <errno.h> 39 39 #include <limits.h> 40 #include <share.h> 40 41 #include <sys/stat.h> 41 42 #include <emx/syscalls.h> … … 47 48 #include <InnoTekLIBC/logstrict.h> 48 49 50 #define SH_MASK 0x70 49 51 50 52 /** … … 66 68 pszFile, fFlags, cbInitial, Mode, fLibc, (void*)ppFH); 67 69 FS_VAR(); 70 71 /* 72 * The SH_COMPAT mode is weird and unless supported by the host we map it to SH_DENYNO. 73 */ 74 if ((fFlags & SH_MASK) == SH_COMPAT) 75 fFlags = (fFlags & ~SH_MASK) | SH_DENYNO; 68 76 69 77 /* -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.