Define MADV_DONTDUMP and MADV_DODUMP for ARM.
authorJoseph Myers <joseph@codesourcery.com>
Wed, 23 May 2012 10:22:42 +0000 (10:22 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 23 May 2012 10:22:42 +0000 (10:22 +0000)
ChangeLog.arm
sysdeps/unix/sysv/linux/arm/bits/mman.h

index bb1bab7..f6eac63 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-23  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/arm/bits/mman.h (MADV_DONTDUMP): Define.
+       (MADV_DODUMP): Likewise.
+
 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: New file.  Macros
index 46c7249..09b9c45 100644 (file)
@@ -96,6 +96,9 @@
 # define MADV_UNMERGEABLE 13   /* KSM may not merge identical pages.  */
 # define MADV_HUGEPAGE   14    /* Worth backing with hugepages.  */
 # define MADV_NOHUGEPAGE  15   /* Not worth backing with hugepages.  */
+# define MADV_DONTDUMP   16    /* Explicity exclude from the core dump,
+                                   overrides the coredump filter bits.  */
+# define MADV_DODUMP     17    /* Clear the MADV_DONTDUMP flag.  */
 # define MADV_HWPOISON   100   /* Poison a page for testing.  */
 #endif