From b78d6f6e7b8e38f4f3be6f9ff8e88ce535765256 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Thu, 19 Apr 2001 07:44:34 +0000 Subject: * mmap.cc (mmap): Drop usage of the same memory area if the same region of the same file is mapped twice. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/mmap.cc | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 97366b03b..c8789b7f6 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 19 9:40:00 2001 Corinna Vinschen + + * mmap.cc (mmap): Drop usage of the same memory area if the same + region of the same file is mapped twice. + Wed Apr 18 16:53:54 2001 Christopher Faylor Throughout, change fdtab references to cygheap->fdtab. diff --git a/winsup/cygwin/mmap.cc b/winsup/cygwin/mmap.cc index 97ee24c0c..78765a1bc 100644 --- a/winsup/cygwin/mmap.cc +++ b/winsup/cygwin/mmap.cc @@ -499,9 +499,9 @@ mmap (caddr_t addr, size_t len, int prot, int flags, int fd, off_t off) list *l = mmapped_areas->get_list_by_fd (fd); /* First check if this mapping matches into the chunk of another - already performed mapping. Only valid for MAP_SHARED and for - MAP_ANON in a special case of MAP_PRIVATE. */ - if (l && ((flags & MAP_SHARED) || (fd == -1 && off == 0))) + already performed mapping. Only valid for MAP_ANON in a special + case of MAP_PRIVATE. */ + if (l && fd == -1 && off == 0) { mmap_record *rec; if ((rec = l->match (off, len)) != NULL) -- cgit v1.2.3