From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 0BC88385DC1A; Tue, 7 Apr 2020 15:44:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0BC88385DC1A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: threads: add missing include of mmap_alloc.h X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: e8ae404440c7e8e2313b54c8de23831a12b87913 X-Git-Newrev: ccb3a40dad106025a32259a369fa5a60f4587695 Message-Id: <20200407154435.0BC88385DC1A@sourceware.org> Date: Tue, 7 Apr 2020 15:44:35 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2020 15:44:35 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=ccb3a40dad106025a32259a369fa5a60f4587695 commit ccb3a40dad106025a32259a369fa5a60f4587695 Author: Corinna Vinschen Date: Tue Apr 7 17:40:38 2020 +0200 Cygwin: threads: add missing include of mmap_alloc.h This is needed for using mmap_alloc.alloc() Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/miscfuncs.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc index deb648eff..b4ab7cd7d 100644 --- a/winsup/cygwin/miscfuncs.cc +++ b/winsup/cygwin/miscfuncs.cc @@ -16,6 +16,7 @@ details. */ #include "fhandler.h" #include "exception.h" #include "tls_pbuf.h" +#include "mmap_alloc.h" int __reg2 check_invalid_virtual_addr (const void *s, unsigned sz)