Changeset 13044
- Timestamp:
- Oct 19, 2009, 8:56:19 AM (15 years ago)
- Location:
- branches/working-0711/ccl
- Files:
-
- 2 edited
-
level-1/linux-files.lisp (modified) (1 diff)
-
lisp-kernel/windows-calls.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/level-1/linux-files.lisp
r12969 r13044 714 714 (%null-ptr) 715 715 #$OPEN_EXISTING 716 #$FILE_ ATTRIBUTE_NORMAL716 #$FILE_FLAG_BACKUP_SEMANTICS 717 717 (%null-ptr)))) 718 718 (if (eql handle *windows-invalid-handle*) -
branches/working-0711/ccl/lisp-kernel/windows-calls.c
r12987 r13044 195 195 196 196 if ((flag & _O_WRONLY) == _O_WRONLY) { 197 dwDesiredAccess |= GENERIC_WRITE | FILE_WRITE_DATA | 198 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES; 197 dwDesiredAccess |= GENERIC_WRITE; 199 198 } else if ((flag & _O_RDWR) == _O_RDWR) { 200 dwDesiredAccess |= GENERIC_WRITE|GENERIC_READ | FILE_READ_DATA | 201 FILE_WRITE_DATA | FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES; 199 dwDesiredAccess |= GENERIC_WRITE|GENERIC_READ; 202 200 } else { 203 dwDesiredAccess |= GENERIC_READ | FILE_READ_DATA | FILE_READ_ATTRIBUTES | 204 FILE_WRITE_ATTRIBUTES; 201 dwDesiredAccess |= GENERIC_READ; 205 202 } 206 203
Note:
See TracChangeset
for help on using the changeset viewer.
