aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Carpet/Carpet/src/Recompose.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/Carpet/Carpet/src/Recompose.cc b/Carpet/Carpet/src/Recompose.cc
index 62e6c6e43..958a5d058 100644
--- a/Carpet/Carpet/src/Recompose.cc
+++ b/Carpet/Carpet/src/Recompose.cc
@@ -1,6 +1,7 @@
#include <algorithm>
#include <cassert>
#include <cmath>
+#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <fstream>
@@ -861,6 +862,12 @@ namespace Carpet {
double (num_active_array_points / 1000000),
double (num_total_array_points / 1000000),
double (num_total_array_points / num_active_array_points * 100 - 100));
+
+ // After this, we will begin to allocate memory for the grid
+ // structure. If we run out of memory, ensure that this output
+ // still makes it to disk.
+ fflush (stdout);
+ fflush (stderr);
}