summaryrefslogtreecommitdiff
path: root/lib/sbin
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-16 09:18:29 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-16 09:18:29 +0000
commit1d52906399562c5eae483b21d87e7fd7bd5d17ca (patch)
tree56d115aeb50ca4dff842d5116e5feb003bc7acc8 /lib/sbin
parent6d58b9d1b3bcb79a5a0ba011fcf6d7705c84a8d1 (diff)
Fixed white space errors
git-svn-id: http://svn.cactuscode.org/flesh/trunk@932 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin')
-rw-r--r--lib/sbin/schedule_parser.pl27
1 files changed, 12 insertions, 15 deletions
diff --git a/lib/sbin/schedule_parser.pl b/lib/sbin/schedule_parser.pl
index 599f9032..5ad04b59 100644
--- a/lib/sbin/schedule_parser.pl
+++ b/lib/sbin/schedule_parser.pl
@@ -74,7 +74,7 @@ sub create_schedule_code
# The footer for the thorn RFR routine
print OUTRFR " }\n}\n";
- print OUTSTART " }\n}\n";
+ print OUTSTART " }\n}\n";
close OUTRFR;
close OUTSTART;
@@ -142,6 +142,7 @@ sub write_startup_header {
print OUTSTART "#include <stdio.h>\n";
print OUTSTART "#include \"cctk.h\"\n";
print OUTSTART "#include \"cctk_Flesh.h\"\n";
+ print OUTSTART "#include \"cctk_WarnLevel.h\"\n";
print OUTSTART "/* FIXME - remove when ActiveThorns does not need this */\n";
print OUTSTART "#include \"SKBinTree.h\"\n\n";
print OUTSTART "#include \"cctk_ActiveThorns.h\"\n";
@@ -354,16 +355,15 @@ sub parse_schedule_ccl
}
# Parse the non-schedule communication line
- elsif ($line =~ m/\s*COMMUNICATION\s*:\s*(.*)/i)
+ elsif ($line =~ m/\s*COMM(UNICATION)?\s*:\s*(.*)/i)
{
if ($type eq "rfr")
{
- @list = split(",",$1);
+ @list = split(",",$2);
foreach $group (@list)
{
# Strip of any spaces
- $group =~ /^\s*(.*)\s*$/;
- $group = $1;
+ $group =~ s/ //g;
$this_imp = $implementation;
$this_group = $group;
@@ -553,8 +553,7 @@ sub parse_schedule_at_RFR {
{
# Strip of any spaces
- $group =~ /^\s*(.*)\s*$/;
- $group = $1;
+ $group =~ s/ //g;
# Take of implementation if it is there
$this_imp = $implementation;
@@ -588,15 +587,14 @@ sub parse_schedule_at_RFR {
for ($i=0; $i<@block; $i++)
{
$line = @block[$i];
- if ($line =~ m/\s*COMMUNICATION\s*:\s*(.*)\s*/i)
+ if ($line =~ m/\s*COMM(UNICATION)?\s*:\s*(.*)\s*/i)
{
- @list = split(",",$1);
+ @list = split(",",$2);
foreach $group (@list)
{
# Strip of any spaces
- $group =~ /^\s*(.*)\s*$/;
- $group = $1;
+ $group =~ s/ //g;
# Take of implementation if it is there
$this_imp = $implementation;
@@ -630,14 +628,13 @@ sub parse_schedule_at_RFR {
for ($i=0; $i<@block; $i++)
{
$line = @block[$i];
- if ($line =~ m/\s*TRIGGERS\s*:\s*(.*)\s*/i)
+ if ($line =~ m/\s*TRIGGER(S)?\s*:\s*(.*)\s*/i)
{
- @list = split(",",$1);
+ @list = split(",",$2);
foreach $var (@list)
{
# Strip of any spaces
- $var =~ /^\s*(.*)\s*$/;
- $var = $1;
+ $var =~ s/ //g;
# Take of implementation if it is there
$this_imp = $implementation;