From 721cee05a257e1d7225fb70ab91832bd898631b3 Mon Sep 17 00:00:00 2001 From: Balazs Gerofi Date: Mon, 13 Feb 2017 13:06:35 +0900 Subject: [PATCH] MPOL default threshold to 0 --- executer/user/mcexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executer/user/mcexec.c b/executer/user/mcexec.c index c4954255..12d3db34 100644 --- a/executer/user/mcexec.c +++ b/executer/user/mcexec.c @@ -158,7 +158,7 @@ static int mpol_no_heap = 0; static int mpol_no_stack = 0; static int mpol_no_bss = 0; static int no_bind_ikc_map = 0; -static unsigned long mpol_threshold = (1024*1024); +static unsigned long mpol_threshold = 0; /* Partitioned execution (e.g., for MPI) */ static int nr_processes = 0;