Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Check for POSIX_MADV_WILLNEED to support building against the LSB
@ 2012-06-11  4:25 Michael Hope
  2012-06-11  5:59 ` Mark Kettenis
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Hope @ 2012-06-11  4:25 UTC (permalink / raw)
  To: gdb-patches; +Cc: patches

The Linux Standard Base APIs include posix_madvise() but don't define
values for the 'advice' argument.  Check to see if POSIX_MADV_WILLNEED
is defined before using.

OK for trunk?

-- Michael

2012-06-11  Michael Hope  <michael.hope@linaro.org>

	* dwarf2read.c (dwarf2_read_section): Check for
	POSIX_MADV_WILLNEED.

diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 589361e..91fab5a 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -1773,7 +1773,7 @@ dwarf2_read_section (struct objfile *objfile, struct dwarf2_section_info *info)

        if ((caddr_t)info->buffer != MAP_FAILED)
         {
-#if HAVE_POSIX_MADVISE
+#if HAVE_POSIX_MADVISE && defined(POSIX_MADV_WILLNEED)
           posix_madvise (info->map_addr, info->map_len, POSIX_MADV_WILLNEED);
  #endif
           return;


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-11 21:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-11  4:25 [PATCH] Check for POSIX_MADV_WILLNEED to support building against the LSB Michael Hope
2012-06-11  5:59 ` Mark Kettenis
2012-06-11  6:17   ` Michael Hope
2012-06-11  8:19     ` Mark Kettenis
2012-06-11 21:40       ` Michael Hope

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox