From 11265e873a6618952820f76da4d702a6485b4678 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 21 Jun 2012 02:10:12 -0700 Subject: [PATCH] snapshot: switch back to mprotect-based snapshotting Subramanian accidentally switched this configuration macro in his last commit... --- snapshot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot.h b/snapshot.h index 629f63a..cbbe007 100644 --- a/snapshot.h +++ b/snapshot.h @@ -11,7 +11,7 @@ /* If USE_MPROTECT_SNAPSHOT=1, then snapshot by using mmap() and mprotect() If USE_MPROTECT_SNAPSHOT=0, then snapshot by using fork() */ -#define USE_MPROTECT_SNAPSHOT 0 +#define USE_MPROTECT_SNAPSHOT 1 /* Size of signal stack */ #define SIGSTACKSIZE 32768 -- 2.34.1