summaryrefslogtreecommitdiff
path: root/src/include/cctki_Schedule.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-10-12 08:01:35 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-10-12 08:01:35 +0000
commit15691f479268d370d9b783cdf09c73469cfc5a13 (patch)
tree80037390c3f58108f287401a6cccb315ffaeaaca /src/include/cctki_Schedule.h
parentfd4bc791103b3b0cebb6747abe50a15cdd0918a9 (diff)
Fix for bug in printing of schedule tree for nested whiling loops - PR/464.
Slightly inelegant 8-( Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1865 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctki_Schedule.h')
-rw-r--r--src/include/cctki_Schedule.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/include/cctki_Schedule.h b/src/include/cctki_Schedule.h
index f2662312..037ac053 100644
--- a/src/include/cctki_Schedule.h
+++ b/src/include/cctki_Schedule.h
@@ -10,7 +10,7 @@
@@*/
#ifndef _CCTKI_SCHEDULE_H_
-#define _CCTKI_SCHEDULE_H_
+#define _CCTKI_SCHEDULE_H_ 1
/* Types needed by other routines. */
@@ -57,15 +57,12 @@ int CCTKi_DoScheduleGroup
int CCTKi_DoScheduleSortAllGroups(void);
/* Traversal routine */
-int CCTKi_DoScheduleTraverse
- (
- const char *group_name,
- int (*item_entry)(void *, void *),
- int (*item_exit)(void *, void *),
- int (*while_check)(int, char **, void *, void *),
- int (*function_process)(void *, void *, void *),
- void *data
- );
+int CCTKi_DoScheduleTraverse(const char *group_name,
+ int (*item_entry)(void *, void *),
+ int (*item_exit)(void *, void *),
+ int (*while_check)(int, char **, void *, void *, int),
+ int (*function_process)(void *, void *, void *),
+ void *data);
#ifdef __cplusplus
}