summaryrefslogtreecommitdiff
path: root/src/main/WarnLevel.c
diff options
context:
space:
mode:
authorsbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-07-24 21:55:30 +0000
committersbrandt <sbrandt@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-07-24 21:55:30 +0000
commitcf13be94c26c1f6085b82e9287772927f021ba08 (patch)
treed040d15c017e4e403eff58cc459b2ff5b9ada3d7 /src/main/WarnLevel.c
parentf7bdf7268a003af3ac0b3ee148d4c196a16827f6 (diff)
Committing change for ticket #176
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4851 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/WarnLevel.c')
-rw-r--r--src/main/WarnLevel.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/WarnLevel.c b/src/main/WarnLevel.c
index c5557ffe..2519910e 100644
--- a/src/main/WarnLevel.c
+++ b/src/main/WarnLevel.c
@@ -1137,6 +1137,25 @@ int CCTKi_SetErrorLevel (int level)
}
+int CCTK_ExitAfterParamCheck();
+ /*@@
+ @routine ExitIfParamCheckOnly
+ @date Mon May 16 2012
+ @author Steven R. Brandt
+ @desc
+ Responsible for exiting after paramcheck
+ @enddesc
+
+@@*/
+void CCTK_ExitIfParamCheckOnly()
+{
+ if(CCTK_ExitAfterParamCheck()) {
+ printf("Exit after param check requested using the --exit-after-param-check option.\n");
+ CCTK_Exit(NULL, 0);
+ }
+}
+
+
/*@@
@routine CCTKi_FinaliseParamWarn
@date June 1999
@@ -1191,6 +1210,7 @@ void CCTKi_FinaliseParamWarn (void)
}
}
}
+ CCTK_ExitIfParamCheckOnly();
}