Displaying 2 results from an estimated 2 matches for "madv_dontfork".
2011 Aug 23
0
qemu-kvm-0.15 + CentOS 5.6 + vanilla 2.6.35.14 (working, patch included)
...x ## y
#define glue(x, y) xglue(x, y)
@@ -95,6 +100,11 @@
#define QEMU_MADV_INVALID -1
+#include "config-host.h"
+#ifndef CONFIG_MADVISE
+#error CONFIG_MADVISE undefined
+#endif
+
#if defined(CONFIG_MADVISE)
#define QEMU_MADV_WILLNEED MADV_WILLNEED
@@ -102,11 +112,13 @@
#ifdef MADV_DONTFORK
#define QEMU_MADV_DONTFORK MADV_DONTFORK
#else
+#error QEMU_MADV_DONTFORK undefined
#define QEMU_MADV_DONTFORK QEMU_MADV_INVALID
#endif
#ifdef MADV_MERGEABLE
#define QEMU_MADV_MERGEABLE MADV_MERGEABLE
#else
+#error MADV_MERGEABLE undefined
#define QEMU_MADV_MERGEABLE QEMU_MADV_INVALID
#e...
2015 Mar 12
0
[ANNOUNCE] intel-gpu-tools 1.10
...d calls instead of raw syscalls on non-Linux systems
Need to #include <libgen.h> for basename() on Solaris
Provide sighandler_t fallback for non-GNU-libc platforms
Don't try to use CLOCK_MONOTONIC_COARSE on OS'es that don't support it
Skip MADV_DOFORK & MADV_DONTFORK calls on OS'es that don't support them
Ander Conselvan de Oliveira (1):
kms_plane: Add test that suspends/resumes before getting crc
Ben Widawsky (3):
tools/Makefile: Alphabetize the list
intel_gpu_frequency: A tool to manipulate Intel GPU frequency
gem_render_copy...