diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2002-09-24 14:17:50 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2002-09-24 14:17:50 +0000 |
commit | f4b098d95efc7d20fc02bf54987c8de8cc1cccef (patch) | |
tree | 56b7dae17fdb84e268a66cf062226365a56cbb6d /winsup/cygwin/mmap.cc | |
parent | 06f1353ae8c39c038218738e47a82c35f4abfc80 (diff) | |
download | cygnal-f4b098d95efc7d20fc02bf54987c8de8cc1cccef.tar.gz cygnal-f4b098d95efc7d20fc02bf54987c8de8cc1cccef.tar.bz2 cygnal-f4b098d95efc7d20fc02bf54987c8de8cc1cccef.zip |
* errno.cc (errmap): Map ERROR_INVALID_ADDRESS to new errno code
EOVERFLOW.
(_sys_errlist): Add entries for EILSEQ and EOVERFLOW.
(strerror): Ditto.
* mmap.cc (map_map): Set errno in case of error.
(mmap64): Remove setting errno explicitely to ENOMEM.
Diffstat (limited to 'winsup/cygwin/mmap.cc')
-rw-r--r-- | winsup/cygwin/mmap.cc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/winsup/cygwin/mmap.cc b/winsup/cygwin/mmap.cc index 68d993cdd..cb0d47647 100644 --- a/winsup/cygwin/mmap.cc +++ b/winsup/cygwin/mmap.cc @@ -151,7 +151,7 @@ mmap_record::map_map (__off64_t off, DWORD len) && !VirtualProtect (base_address_ + off * getpagesize (), len * getpagesize (), prot, &old_prot)) { - debug_printf ("-1 = map_map (): %E"); + __seterrno (); return (__off64_t)-1; } @@ -167,7 +167,7 @@ mmap_record::map_map (__off64_t off, DWORD len) && !VirtualProtect (base_address_ + start * getpagesize (), len * getpagesize (), prot, &old_prot)) { - debug_printf ("-1 = map_map (): %E"); + __seterrno (); return (__off64_t)-1; } @@ -517,8 +517,7 @@ mmap64 (caddr_t addr, size_t len, int prot, int flags, int fd, __off64_t off) { if ((off = rec->map_map (off, len)) == (__off64_t)-1) { - set_errno (ENOMEM); - syscall_printf ("-1 = mmap(): ENOMEM"); + syscall_printf ("-1 = mmap()"); ReleaseResourceLock (LOCK_MMAP_LIST, READ_LOCK|WRITE_LOCK, "mmap"); return MAP_FAILED; } @@ -583,8 +582,7 @@ mmap64 (caddr_t addr, size_t len, int prot, int flags, int fd, __off64_t off) { fh->munmap (h, base, gran_len); l->erase (); - set_errno (ENOMEM); - syscall_printf ("-1 = mmap(): ENOMEM"); + syscall_printf ("-1 = mmap()"); ReleaseResourceLock (LOCK_MMAP_LIST, READ_LOCK | WRITE_LOCK, "mmap"); return MAP_FAILED; } |