win32-os.c: Split up handle_exception
[sbcl.git] / src / runtime / core.h
index 57df1cb..3f05cd5 100644 (file)
@@ -31,6 +31,16 @@ struct ndir_entry {
 #endif
 };
 
+/* Tri-state flag to determine whether we attempt to mark pages
+ * as targets for virtual memory deduplication (ala MADV_MERGEABLE
+ * on Linux).
+ *
+ * 1: Yes
+ * 0: No
+ * -1: default, yes for compressed cores, no otherwise.
+ */
+extern int merge_core_pages;
+
 extern lispobj load_core_file(char *file, os_vm_offset_t offset);
 extern os_vm_offset_t search_for_embedded_core(char *file);