From a6a1158bcd853931538dafd7bca42784f87c0527 Mon Sep 17 00:00:00 2001 From: goodale Date: Fri, 28 Jan 2000 02:47:03 +0000 Subject: Now, subject to review, you can put OPTIONS:... in a schedule block to pass miscellaneous options to the schedular. Currently the only option is "Global" which sets a flag on the FunctionData structure passed to the call function. This option only makes sense for a scheduled function, not a schedule group, though this may change in the future. It is used to indicate to the calling function that this function should only be called once as it performs global operations. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1325 17b73243-c579-4c4c-a9d2-2d5706c11dac --- src/include/cctki_ScheduleBindings.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/include/cctki_ScheduleBindings.h') diff --git a/src/include/cctki_ScheduleBindings.h b/src/include/cctki_ScheduleBindings.h index 6316f346..faeabd0d 100644 --- a/src/include/cctki_ScheduleBindings.h +++ b/src/include/cctki_ScheduleBindings.h @@ -29,11 +29,11 @@ int CCTKi_ScheduleFunction(void *function, int n_comm_groups, int n_trigger_groups, int n_sync_groups, + int n_options, int n_before, int n_after, int n_while, - ... - ); + ...); int CCTKi_ScheduleGroup(const char *name, const char *thorn, @@ -44,6 +44,7 @@ int CCTKi_ScheduleGroup(const char *name, int n_comm_groups, int n_trigger_groups, int n_sync_groups, + int n_options, int n_before, int n_after, int n_while, -- cgit v1.2.3