- Timestamp:
- Jun 1, 2008, 11:31:55 PM (16 years ago)
- File:
-
- 1 edited
-
branches/win64/lisp-kernel/memory.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/win64/lisp-kernel/memory.c
r8956 r9651 222 222 #endif 223 223 #ifdef WINDOWS 224 if ((start < ((LogicalAddress)nil_value)) && 225 (((LogicalAddress)nil_value) < (start+len))) { 226 /* nil area is in the executable on Windows, do nothing */ 227 return true; 228 } 224 229 rc = VirtualAlloc(start, len, MEM_COMMIT, PAGE_EXECUTE_READWRITE); 225 230 if (!rc) { … … 351 356 352 357 int 353 MapFile(LogicalAddress addr, natural pos, natural nbytes, int permissions, int fd) { 358 MapFile(LogicalAddress addr, natural pos, natural nbytes, int permissions, int fd) 359 { 354 360 #ifdef WINDOWS 355 361 #if 0
Note:
See TracChangeset
for help on using the changeset viewer.
