Asg
Threads by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 1410 discussions
aesop Repository branch, master, updated. aff4deed0983dde397b6abc4017f50fd42a5a21e
by noreply@mcs.anl.gov 27 Mar '12
by noreply@mcs.anl.gov 27 Mar '12
27 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via aff4deed0983dde397b6abc4017f50fd42a5a21e (commit)
from 81c56af54c10f4d600d5e05b63fb603b0e053159 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit aff4deed0983dde397b6abc4017f50fd42a5a21e
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Tue Mar 27 20:37:56 2012 -0400
correctly delete .s files on make clean, fixes #30
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Diff of changes:
diff --git a/Makefile.in b/Makefile.in
index e158e57..b5bc5fe 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -598,7 +598,7 @@ runvalgrind: $(runVALGRIND)
$(E) echo -n " $@ : " && cat $@
# other intermediates may exist from aecc and aercc
-INTERM_AESRC=$(patsubst %.o,%.ae.i.s,$(AEOBJS))
+INTERM_AESRC=$(patsubst %.o,%.ae.s,$(AEOBJS))
INTERM_AEINC=$(patsubst %.o,%.ae.i,$(AEOBJS))
INTERM_HAEINC=$(patsubst %.h,%.hae.i,$(AESOP_TRHDR))
hooks/post-receive
--
aesop Repository
1
0
#28: errors building some tests using clang compiler
---------------------------+------------------------------------------------
Reporter: carns | Owner:
Type: defect | Status: new
Priority: minor | Component: code generator
Version: git repository | Keywords:
---------------------------+------------------------------------------------
If you compile the aesop tree using clang as the underlying compiler
(../configure CC=clang) then everything works except for three specific
test programs:
* tests/blocking-overhead
* parser/tests/blocking/nbfun
* parser/tests/blocking/lonely-pbranch3
In all three cases the error looks something like this:
{{{
../tests/blocking-overhead.ae:65:5: error: indirect goto in function with
no address-of-label expressions
goto * (__ae_ctl->gen.state_label);
^
}}}
The translator is emitting boilerplate code that includes jumping to a
label pointer, but the function doesn't have any blocking calls or label
pointers.
This ticket isn't critical; clang is mainly of interest for some analysis
and debugging tools and the above tests can be commented out.
--
Ticket URL: <https://trac.mcs.anl.gov/projects/aesop/ticket/28>
aesop <https://trac.mcs.anl.gov/projects/aesop>
The Aesop Language
1
1
aesop Repository branch, master, updated. 81c56af54c10f4d600d5e05b63fb603b0e053159
by noreply@mcs.anl.gov 27 Mar '12
by noreply@mcs.anl.gov 27 Mar '12
27 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via 81c56af54c10f4d600d5e05b63fb603b0e053159 (commit)
from 0f00f3ed9de349883160b85371e6ebaa91405441 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 81c56af54c10f4d600d5e05b63fb603b0e053159
Author: Dries Kimpe <dkimpe(a)mcs.anl.gov>
Date: Tue Mar 27 15:33:40 2012 -0500
Fix for label pointer issue with clang (#28)
Fixes ticket #28
-----------------------------------------------------------------------
Summary of changes:
ae-blocking-parser.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
Diff of changes:
diff --git a/ae-blocking-parser.h b/ae-blocking-parser.h
index d2ad79e..0631a43 100644
--- a/ae-blocking-parser.h
+++ b/ae-blocking-parser.h
@@ -206,6 +206,7 @@ static void __bfun##_##__fname##_##__pos_str##_callback(void *__ae_ptr) \
__ae_myret = AE_SUCCESS; \
if(*__ae_state == AE_CTL_CALL_COMPLETE) \
{ \
+fake_label_to_please_clang: \
assert(__ae_ctl->gen.state_label); \
goto *__ae_ctl->gen.state_label; \
}
hooks/post-receive
--
aesop Repository
1
0
Attached are the notes (ascii doc & pdf) from the discussion from last
Thursday. The document is based on my notes; I've also integrated the
notes Phil sent me.
The document can be found in 'documents/2012/design' in the ASG git
repository. I've also attached a pdf and the asciidoc source to this
email.
(instructions on how to access the repository can be found at the bottom
of this email).
I would ask everybody to:
1) Read through the document and add/clarify where needed
*by the latest by Monday 3/26*.
(Ideally, commit to the repository and send a note to the list
describing the change)
2) Verify that *3/29 @ 10am CST* works for you for the follow up
discussion.
I will send out another email with the agenda en final time (and concall
info) early next week.
Thanks,
Dries
Repository access:
The repository can be cloned using:
git clone [email protected]:asg.git
(If access is refused, please send me your private key (off list) and I'll
add it).
4
5
aesop Repository branch, master, updated. 0f00f3ed9de349883160b85371e6ebaa91405441
by noreply@mcs.anl.gov 27 Mar '12
by noreply@mcs.anl.gov 27 Mar '12
27 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via 0f00f3ed9de349883160b85371e6ebaa91405441 (commit)
from a91009e889e93e6763ec0368c943f73b37bbcb6b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0f00f3ed9de349883160b85371e6ebaa91405441
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Tue Mar 27 13:05:16 2012 -0400
use configure-time CC in aecc script by default
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 4 ++--
bin/aecc.in | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
Diff of changes:
diff --git a/Makefile.in b/Makefile.in
index fb7d913..e158e57 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -493,7 +493,7 @@ lib/libaesop-test.dylib: $(AETESTLIBOBJS) $(TESTLIBOBJS)
$(AEOBJS): %.o: $(HSBIN) %.ae
$(Q) " AECC $*.ae"
$(E)$(builddir)/bin/aecc -o $(builddir)/$*.o $(srcdir)/$*.ae \
- -c $(call MCC_AE,$*) $(VA) $(DA) $(AEPRETTY) \
+ $(VA) $(DA) $(AEPRETTY) \
-- $(LIBCFLAGS) $(CFLAGS) $(CWARNS) $(call MODCFLAGS_AE,$*)
# Auto-generated dependencies for .ae files
@@ -508,7 +508,7 @@ $(AESOP_TRHDR): %.h: %.hae $(HSBIN)
$(Q) " AECC $*.hae"
$(E)$(builddir)/bin/aecc -o $(builddir)/$*.h $(srcdir)/$*.hae \
- -j -c $(call MCC_AE,$*) $(VA) $(DA) $(AEPRETTY) \
+ -j $(VA) $(DA) $(AEPRETTY) \
-- $(LIBCFLAGS) $(CFLAGS) $(CWARNS) $(call MODCFLAGS_AE,$*)
$(AESOP_TRHDR_DEPS): %.h.d: %.hae in_tree_include
diff --git a/bin/aecc.in b/bin/aecc.in
index 70e479a..98510a0 100644
--- a/bin/aecc.in
+++ b/bin/aecc.in
@@ -10,7 +10,7 @@ setHelpStart "Usage: aecc <options> <file> -- <compiler options>.\n"
setHelpEnd "\tAll other options (after --) are passed on to the compiler.\n"
addOption h help no none no empty printHelpAndExit "This message."
-addOption c compiler yes compiler no "<compiler path>" none "Path to the compiler to use. Defaults to gcc."
+addOption c compiler yes compiler no "<compiler path>" none "Path to the compiler to use. Default specified at configure time."
addOption p "pretty" no none no empty none "Have the parser output pretty code (no source lines)."
addOption d "debug" no none no empty none "Enable debugging for the parser."
addOption s "just-source" no none no empty none "Just generate C source and header files."
@@ -22,7 +22,7 @@ addOption M "generate-deps" no none no empty none "Generate dependency file duri
addOption j "parse-hae" no none no empty none "Generate a C .h header from an Aesop .hae header."
addOption l "pre-compile" no none no empty none "Pre-compile aesop for syntax checking."
-compiler=gcc
+compiler=@CC@
parseropts=""
outputfile=a.out
hooks/post-receive
--
aesop Repository
1
0
aesop Repository branch, master, updated. a91009e889e93e6763ec0368c943f73b37bbcb6b
by noreply@mcs.anl.gov 27 Mar '12
by noreply@mcs.anl.gov 27 Mar '12
27 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via a91009e889e93e6763ec0368c943f73b37bbcb6b (commit)
from 9f90c3ec7c38ea7c04403d671c1cf1fb5e8ab99d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a91009e889e93e6763ec0368c943f73b37bbcb6b
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Tue Mar 27 10:16:11 2012 -0400
configure test for label pointers
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
Diff of changes:
diff --git a/configure.ac b/configure.ac
index 838deb5..1b6ea22 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,6 +41,15 @@ if test "x$GCC" = "x"; then
fi
AC_MSG_RESULT(yes)
+dnl Check to see if CC can handle label pointers
+AC_MSG_CHECKING(if the C compiler supports label pointers)
+AC_TRY_COMPILE([], [void* foo; my_label: foo=&&my_label;],
+ AC_MSG_RESULT(yes),
+ AC_MSG_RESULT(no)
+ AC_MSG_ERROR(CC does not support label pointer extension, please try gcc or clang)
+)
+
+
dnl regardless of what compiler the user is using, we still check for gcc in
dnl the path to use for generating dependencies
AC_CHECK_PROG(HAVE_GCC_BIN, gcc, yes, no,)
hooks/post-receive
--
aesop Repository
1
0
aesop Repository branch, master, updated. 9f90c3ec7c38ea7c04403d671c1cf1fb5e8ab99d
by noreply@mcs.anl.gov 27 Mar '12
by noreply@mcs.anl.gov 27 Mar '12
27 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via 9f90c3ec7c38ea7c04403d671c1cf1fb5e8ab99d (commit)
from ad9aa2898a5bbee71cf2ae0e4063c30201a12b5b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9f90c3ec7c38ea7c04403d671c1cf1fb5e8ab99d
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Tue Mar 27 10:08:30 2012 -0400
always use gcc to generate build dependencies
- add configure test for gcc for this purpose, regardless of which
compiler will be used for compilation steps
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 6 +++---
configure.ac | 7 +++++++
maint/depend-ae.sh | 2 +-
maint/depend-hae.sh | 2 +-
maint/depend.sh | 2 +-
5 files changed, 13 insertions(+), 6 deletions(-)
Diff of changes:
diff --git a/Makefile.in b/Makefile.in
index b653aba..fb7d913 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -438,7 +438,7 @@ $(GENLIBOBJS) $(LIBOBJS) $(TESTOBJS): %.o: %.c
# Auto-generated dependencies for .c files
$(LIBDEPS) $(GENLIBDEPS) $(TESTDEPS) $(TESTLIBDEPS): %.d: %.c in_tree_include
$(Q) " DEP $@"
- $(E)CC=$(call MCC_C,$*) $(srcdir)/maint/depend.sh $(call dirname,$*) $(LIBCFLAGS) $(CFLAGS) $(call MODCFLAGS_C,$*) $< > $@
+ $(E)$(srcdir)/maint/depend.sh $(call dirname,$*) $(LIBCFLAGS) $(CFLAGS) $(call MODCFLAGS_C,$*) $< > $@
$(TESTLIBOBJS): %.o: %.c
@@ -499,7 +499,7 @@ $(AEOBJS): %.o: $(HSBIN) %.ae
# Auto-generated dependencies for .ae files
$(AEDEPS): %.ae.d: %.ae in_tree_include
$(Q) " DEP $@"
- $(E)CC=$(call MCC_C,$*) $(srcdir)/maint/depend-ae.sh $(call dirname,$*) $(srcdir) $(LIBCFLAGS) $(CFLAGS) $(call MODCFLAGS_C,$*) $< > $@
+ $(E)$(srcdir)/maint/depend-ae.sh $(call dirname,$*) $(srcdir) $(LIBCFLAGS) $(CFLAGS) $(call MODCFLAGS_C,$*) $< > $@
# Generate header files (%.h) from AE header files
# NOTE: this is used by resource .c files that need to include the .h
@@ -513,7 +513,7 @@ $(AESOP_TRHDR): %.h: %.hae $(HSBIN)
$(AESOP_TRHDR_DEPS): %.h.d: %.hae in_tree_include
$(Q) " DEP $@"
- $(E)CC=$(call MCC_C,$*) $(srcdir)/maint/depend-hae.sh $(call dirname,$*) $(srcdir) $(LIBCFLAGS) $(CFLAGS) $(call MODCFLAGS_C,$*) $< > $@
+ $(E)$(srcdir)/maint/depend-hae.sh $(call dirname,$*) $(srcdir) $(LIBCFLAGS) $(CFLAGS) $(call MODCFLAGS_C,$*) $< > $@
# TODO: we need a better solution here. The problem is that the
# auto-dependencies often include generated headers. If we make the .d
diff --git a/configure.ac b/configure.ac
index 7309f82..838deb5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,6 +41,13 @@ if test "x$GCC" = "x"; then
fi
AC_MSG_RESULT(yes)
+dnl regardless of what compiler the user is using, we still check for gcc in
+dnl the path to use for generating dependencies
+AC_CHECK_PROG(HAVE_GCC_BIN, gcc, yes, no,)
+if test "$HAVE_GCC_BIN" = "no"; then
+ AC_MSG_ERROR([gcc must be in path in order to generate build dependencies])
+fi
+
AX_GHC("")
dnl ======================================================================
diff --git a/maint/depend-ae.sh b/maint/depend-ae.sh
index 54bbe00..bea09eb 100755
--- a/maint/depend-ae.sh
+++ b/maint/depend-ae.sh
@@ -17,4 +17,4 @@ fi
# generate dependencies on raw .ae files.
# there is one manual addition to the dependencies (ae-blocking-parser.h)
# which is implicitly added by the aesop parser
-exec $CC -x c -M -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR\1.o: $SRCDIR/ae-blocking-parser.h@"
+exec gcc -x c -M -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR\1.o: $SRCDIR/ae-blocking-parser.h@"
diff --git a/maint/depend-hae.sh b/maint/depend-hae.sh
index f90f112..f2c5456 100755
--- a/maint/depend-hae.sh
+++ b/maint/depend-hae.sh
@@ -18,4 +18,4 @@ fi
# generate dependencies on raw .ae files.
# there is one manual addition to the dependencies (ae-blocking-parser.h)
# which is implicitly added by the aesop parser
-exec $CC -x c -M -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR\1.h: $SRCDIR/ae-blocking-parser.h@"
+exec gcc -x c -M -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR\1.h: $SRCDIR/ae-blocking-parser.h@"
diff --git a/maint/depend.sh b/maint/depend.sh
index e05fe68..52ec8fa 100755
--- a/maint/depend.sh
+++ b/maint/depend.sh
@@ -13,4 +13,4 @@ fi
# -x c tells gcc to pretend like the input file is a c file regardless of
# filename extension. This is useful for cases where we want gcc to
# generate dependencies on raw .ae files.
-exec $CC -x c -M -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR\1.o:@"
+exec gcc -x c -M -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR\1.o:@"
hooks/post-receive
--
aesop Repository
1
0
aesop Repository branch, master, updated. ad9aa2898a5bbee71cf2ae0e4063c30201a12b5b
by noreply@mcs.anl.gov 26 Mar '12
by noreply@mcs.anl.gov 26 Mar '12
26 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via ad9aa2898a5bbee71cf2ae0e4063c30201a12b5b (commit)
from 3a0b669516f64cfb818bc2b4e32b357fbe319cac (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ad9aa2898a5bbee71cf2ae0e4063c30201a12b5b
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Mon Mar 26 21:21:06 2012 -0400
fix scripting goof
-----------------------------------------------------------------------
Summary of changes:
hints.c | 1 -
hints.h | 1 -
.../blocking/lonely-pbranch-variable-scope.ae | 1 -
parser/tests/blocking/lonely-pbranch.ae | 1 -
parser/tests/blocking/lonely-pbranch2.ae | 1 -
parser/tests/blocking/lonely-pbranch3.ae | 1 -
parser/tests/blocking/lonely-pbranch4.ae | 1 -
parser/tests/blocking/parallelfor2.ae | 1 -
parser/tests/blocking/parallelfor3.ae | 1 -
parser/tests/blocking/pbreak-before-blocking.ae | 1 -
parser/tests/blocking/pbreak7.ae | 1 -
parser/tests/blocking/pbreak8.ae | 1 -
parser/tests/blocking/pprivate.ae | 1 -
parser/tests/blocking/pshared.ae | 1 -
resource.h | 1 -
resources/thread/test/aethread-cancel.ae | 1 -
resources/thread/test/aethread-example.ae | 1 -
resources/timer/test/timer-cancel.ae | 1 -
resources/timer/test/timer1.ae | 1 -
resources/timer/test/timer2.ae | 1 -
src/aefile/test/aefile-example.ae | 1 -
src/socket/test/simple.ae | 1 -
src/ssm/test/ssmget.ae | 1 -
src/ssm/test/ssmmsg.ae | 1 -
src/ssm/test/ssmping.ae | 1 -
src/ssm/test/ssmput.ae | 1 -
26 files changed, 0 insertions(+), 26 deletions(-)
Diff of changes:
diff --git a/hints.c b/hints.c
index b737311..069e43d 100644
--- a/hints.c
+++ b/hints.c
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/hints.h b/hints.h
index f45260d..6497e44 100644
--- a/hints.h
+++ b/hints.h
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/lonely-pbranch-variable-scope.ae b/parser/tests/blocking/lonely-pbranch-variable-scope.ae
index 5906764..b6a6ea9 100644
--- a/parser/tests/blocking/lonely-pbranch-variable-scope.ae
+++ b/parser/tests/blocking/lonely-pbranch-variable-scope.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/lonely-pbranch.ae b/parser/tests/blocking/lonely-pbranch.ae
index 7565214..d422c99 100644
--- a/parser/tests/blocking/lonely-pbranch.ae
+++ b/parser/tests/blocking/lonely-pbranch.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/lonely-pbranch2.ae b/parser/tests/blocking/lonely-pbranch2.ae
index d25f3bb..20d2a77 100644
--- a/parser/tests/blocking/lonely-pbranch2.ae
+++ b/parser/tests/blocking/lonely-pbranch2.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/lonely-pbranch3.ae b/parser/tests/blocking/lonely-pbranch3.ae
index 4cc53f9..63b693c 100644
--- a/parser/tests/blocking/lonely-pbranch3.ae
+++ b/parser/tests/blocking/lonely-pbranch3.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/lonely-pbranch4.ae b/parser/tests/blocking/lonely-pbranch4.ae
index 164fbc7..50fd034 100644
--- a/parser/tests/blocking/lonely-pbranch4.ae
+++ b/parser/tests/blocking/lonely-pbranch4.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/parallelfor2.ae b/parser/tests/blocking/parallelfor2.ae
index 84992ca..c67989e 100644
--- a/parser/tests/blocking/parallelfor2.ae
+++ b/parser/tests/blocking/parallelfor2.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/parallelfor3.ae b/parser/tests/blocking/parallelfor3.ae
index 69a294e..780c522 100644
--- a/parser/tests/blocking/parallelfor3.ae
+++ b/parser/tests/blocking/parallelfor3.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/pbreak-before-blocking.ae b/parser/tests/blocking/pbreak-before-blocking.ae
index 78de7f6..9338f9b 100644
--- a/parser/tests/blocking/pbreak-before-blocking.ae
+++ b/parser/tests/blocking/pbreak-before-blocking.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/pbreak7.ae b/parser/tests/blocking/pbreak7.ae
index 5bd3fef..e86656e 100644
--- a/parser/tests/blocking/pbreak7.ae
+++ b/parser/tests/blocking/pbreak7.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/pbreak8.ae b/parser/tests/blocking/pbreak8.ae
index 09f7484..e998dda 100644
--- a/parser/tests/blocking/pbreak8.ae
+++ b/parser/tests/blocking/pbreak8.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/pprivate.ae b/parser/tests/blocking/pprivate.ae
index 59cc87b..a066b97 100644
--- a/parser/tests/blocking/pprivate.ae
+++ b/parser/tests/blocking/pprivate.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/pshared.ae b/parser/tests/blocking/pshared.ae
index 4fead9d..264ece2 100644
--- a/parser/tests/blocking/pshared.ae
+++ b/parser/tests/blocking/pshared.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/resource.h b/resource.h
index e1c3565..c539be4 100644
--- a/resource.h
+++ b/resource.h
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/resources/thread/test/aethread-cancel.ae b/resources/thread/test/aethread-cancel.ae
index a33ecfb..260bb52 100644
--- a/resources/thread/test/aethread-cancel.ae
+++ b/resources/thread/test/aethread-cancel.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/resources/thread/test/aethread-example.ae b/resources/thread/test/aethread-example.ae
index 49e489d..d0ba578 100644
--- a/resources/thread/test/aethread-example.ae
+++ b/resources/thread/test/aethread-example.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/resources/timer/test/timer-cancel.ae b/resources/timer/test/timer-cancel.ae
index 94f781a..8d32b02 100644
--- a/resources/timer/test/timer-cancel.ae
+++ b/resources/timer/test/timer-cancel.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/resources/timer/test/timer1.ae b/resources/timer/test/timer1.ae
index 5356ccf..97ecd7b 100644
--- a/resources/timer/test/timer1.ae
+++ b/resources/timer/test/timer1.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/resources/timer/test/timer2.ae b/resources/timer/test/timer2.ae
index 59fc4b3..a448fca 100644
--- a/resources/timer/test/timer2.ae
+++ b/resources/timer/test/timer2.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/src/aefile/test/aefile-example.ae b/src/aefile/test/aefile-example.ae
index 6964f8f..f727cf1 100644
--- a/src/aefile/test/aefile-example.ae
+++ b/src/aefile/test/aefile-example.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/src/socket/test/simple.ae b/src/socket/test/simple.ae
index 539a321..3d4a071 100644
--- a/src/socket/test/simple.ae
+++ b/src/socket/test/simple.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/src/ssm/test/ssmget.ae b/src/ssm/test/ssmget.ae
index 8cc6a2b..fe6d5d7 100644
--- a/src/ssm/test/ssmget.ae
+++ b/src/ssm/test/ssmget.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/src/ssm/test/ssmmsg.ae b/src/ssm/test/ssmmsg.ae
index 6cf43e4..f20312c 100644
--- a/src/ssm/test/ssmmsg.ae
+++ b/src/ssm/test/ssmmsg.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/src/ssm/test/ssmping.ae b/src/ssm/test/ssmping.ae
index cc413fa..967ee4b 100644
--- a/src/ssm/test/ssmping.ae
+++ b/src/ssm/test/ssmping.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/src/ssm/test/ssmput.ae b/src/ssm/test/ssmput.ae
index ab21442..775c1ed 100644
--- a/src/ssm/test/ssmput.ae
+++ b/src/ssm/test/ssmput.ae
@@ -1,4 +1,3 @@
-found something!
/*
* (C) 2009 The University of Chicago
*
hooks/post-receive
--
aesop Repository
1
0
#9: Update license information
-------------------+--------------------------------------------------------
Reporter: carns | Owner: carns
Type: defect | Status: closed
Priority: major | Component: component1
Version: | Resolution: fixed
Keywords: |
-------------------+--------------------------------------------------------
Changes (by carns):
* status: accepted => closed
* resolution: => fixed
--
Ticket URL: <https://trac.mcs.anl.gov/projects/aesop/ticket/9#comment:2>
aesop <https://trac.mcs.anl.gov/projects/aesop>
The Aesop Language
1
0
aesop Repository branch, master, updated. 3a0b669516f64cfb818bc2b4e32b357fbe319cac
by noreply@mcs.anl.gov 26 Mar '12
by noreply@mcs.anl.gov 26 Mar '12
26 Mar '12
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "aesop Repository".
The branch, master has been updated
via 3a0b669516f64cfb818bc2b4e32b357fbe319cac (commit)
via 10dbfaa1731f84302ac8ae56fd19ea591ad6cca5 (commit)
via 097681fa6b4887c70d45bf93ee957462d7bd4d24 (commit)
via 680a9c2174d414ac8c76e0a06c58472b5b0bdf4b (commit)
via 5b23b338a97cf7adaaa2493ff9115c879dbe8b9b (commit)
from fc2284c8031c4507b33af0dd7beef85cd99dc806 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3a0b669516f64cfb818bc2b4e32b357fbe319cac
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Mon Mar 26 20:58:19 2012 -0400
fix copyright and editor directives on *.ae
commit 10dbfaa1731f84302ac8ae56fd19ea591ad6cca5
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Mon Mar 26 20:50:07 2012 -0400
copyright and editor directives on .h files
commit 097681fa6b4887c70d45bf93ee957462d7bd4d24
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Mon Mar 26 20:45:09 2012 -0400
copyright and editor directives on .c files
commit 680a9c2174d414ac8c76e0a06c58472b5b0bdf4b
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Mon Mar 26 20:44:44 2012 -0400
updated c-utils
commit 5b23b338a97cf7adaaa2493ff9115c879dbe8b9b
Author: Phil Carns <carns(a)mcs.anl.gov>
Date: Mon Mar 26 20:44:23 2012 -0400
add COPYRIGHT notice
-----------------------------------------------------------------------
Summary of changes:
COPYRIGHT | 34 ++++++++++++++++++++
ae-blocking-parser.h | 15 +++++++++
ae-ctl.c | 15 +++++++++
ae-ctl.h | 15 +++++++++
ae-debug.h | 15 +++++++++
ae-error.h | 15 +++++++++
ae-init.c | 15 +++++++++
ae-init.h | 15 +++++++++
ae-log.h | 15 +++++++++
ae-types.h | 15 +++++++++
aesop-support.hae | 15 +++++++++
aesop.c | 15 +++++++++
aesop.h | 15 +++++++++
hints.c | 7 ++++
hints.h | 7 ++++
op.h | 8 ++++-
opcache.c | 8 ++++-
opcache.h | 8 ++++-
parser/tests/blocking/afterwhile.ae | 15 +++++++++
parser/tests/blocking/basic-struct-init.ae | 15 +++++++++
parser/tests/blocking/basic-struct-return.ae | 15 +++++++++
parser/tests/blocking/basic.ae | 15 +++++++++
parser/tests/blocking/btest-impl.c | 8 ++++-
parser/tests/blocking/btest.hae | 15 +++++++++
parser/tests/blocking/cancel-pbranch-loop.ae | 15 +++++++++
parser/tests/blocking/cancel-pbranch1.ae | 15 +++++++++
parser/tests/blocking/cancel-pbranch2.ae | 15 +++++++++
parser/tests/blocking/cancel-pbranch3.ae | 15 +++++++++
parser/tests/blocking/cancel-pbranch4.ae | 15 +++++++++
parser/tests/blocking/compound.ae | 15 +++++++++
parser/tests/blocking/dowhileloop.ae | 15 +++++++++
parser/tests/blocking/forloop.ae | 15 +++++++++
parser/tests/blocking/forloop2.ae | 15 +++++++++
parser/tests/blocking/forloop3.ae | 15 +++++++++
parser/tests/blocking/funptrs.ae | 15 +++++++++
parser/tests/blocking/icpfor.ae | 15 +++++++++
parser/tests/blocking/if.ae | 15 +++++++++
parser/tests/blocking/ifnbelse.ae | 15 +++++++++
parser/tests/blocking/ifnoelse.ae | 15 +++++++++
parser/tests/blocking/ifnoelse2.ae | 15 +++++++++
.../blocking/lonely-pbranch-variable-scope.ae | 7 ++++
parser/tests/blocking/lonely-pbranch.ae | 7 ++++
parser/tests/blocking/lonely-pbranch2.ae | 7 ++++
parser/tests/blocking/lonely-pbranch3.ae | 7 ++++
parser/tests/blocking/lonely-pbranch4.ae | 7 ++++
parser/tests/blocking/mixed.ae | 15 +++++++++
parser/tests/blocking/multif.ae | 15 +++++++++
parser/tests/blocking/nbfun.ae | 15 +++++++++
parser/tests/blocking/nested-forloop.ae | 15 +++++++++
parser/tests/blocking/nested.ae | 15 +++++++++
parser/tests/blocking/parallel1.ae | 15 +++++++++
parser/tests/blocking/parallel2.ae | 15 +++++++++
parser/tests/blocking/parallel3.ae | 15 +++++++++
parser/tests/blocking/parallel4.ae | 15 +++++++++
parser/tests/blocking/parallelfor.ae | 15 +++++++++
parser/tests/blocking/parallelfor2.ae | 1 +
parser/tests/blocking/parallelfor3.ae | 1 +
parser/tests/blocking/params.ae | 15 +++++++++
parser/tests/blocking/pbranch-completion.ae | 15 +++++++++
parser/tests/blocking/pbranch-with-return.ae | 15 +++++++++
parser/tests/blocking/pbreak-before-blocking.ae | 7 ++++
parser/tests/blocking/pbreak-immed-cancel.ae | 15 +++++++++
parser/tests/blocking/pbreak.ae | 15 +++++++++
parser/tests/blocking/pbreak2.ae | 15 +++++++++
parser/tests/blocking/pbreak3.ae | 15 +++++++++
parser/tests/blocking/pbreak4.ae | 15 +++++++++
parser/tests/blocking/pbreak5.ae | 15 +++++++++
parser/tests/blocking/pbreak6.ae | 15 +++++++++
parser/tests/blocking/pbreak7.ae | 7 ++++
parser/tests/blocking/pbreak8.ae | 7 ++++
parser/tests/blocking/pprivate.ae | 7 ++++
parser/tests/blocking/pshared.ae | 7 ++++
parser/tests/blocking/pwait-in-for.ae | 15 +++++++++
parser/tests/blocking/pwait-in-while.ae | 15 +++++++++
parser/tests/blocking/tcpfor.ae | 15 +++++++++
parser/tests/blocking/threefors.ae | 15 +++++++++
parser/tests/blocking/twofors.ae | 15 +++++++++
parser/tests/blocking/whilebreak.ae | 15 +++++++++
parser/tests/blocking/whilebreak2.ae | 15 +++++++++
parser/tests/blocking/whilebreak3.ae | 15 +++++++++
parser/tests/blocking/whileloop.ae | 15 +++++++++
resource.c | 8 ++++-
resource.h | 10 +++++-
resources/resourcebuilder/resourcebuilder.c | 15 +++++++++
resources/resourcebuilder/resourcebuilder.hae | 15 +++++++++
resources/resourcebuilder/test/cancel.ae | 15 +++++++++
resources/resourcebuilder/test/simple.ae | 15 +++++++++
resources/thread/aethread.c | 8 ++++-
resources/thread/aethread.hae | 15 +++++++++
resources/thread/test/aethread-cancel.ae | 7 ++++
resources/thread/test/aethread-example.ae | 7 ++++
resources/timer/test/pthread-compare.ae | 8 ++++-
resources/timer/test/timer-cancel.ae | 7 ++++
resources/timer/test/timer1.ae | 7 ++++
resources/timer/test/timer2.ae | 10 +++++-
resources/timer/timer.c | 8 ++++-
resources/timer/timer.hae | 15 +++++++++
src/aefile/aefile.ae | 15 +++++++++
src/aefile/aefile.hae | 15 +++++++++
src/aefile/test/aefile-example.ae | 7 ++++
src/c-utils | 2 +-
src/socket/aesocket.ae | 8 ++++-
src/socket/aesocket.hae | 8 ++++-
src/socket/test/simple.ae | 7 ++++
src/ssm/aessm.ae | 15 +++++++++
src/ssm/aessm.hae | 15 +++++++++
src/ssm/test/ssmget.ae | 7 ++++
src/ssm/test/ssmmsg.ae | 7 ++++
src/ssm/test/ssmping.ae | 7 ++++
src/ssm/test/ssmput.ae | 7 ++++
tests/blocking-overhead.ae | 15 +++++++++
tests/test-hints.ae | 15 +++++++++
112 files changed, 1389 insertions(+), 13 deletions(-)
create mode 100644 COPYRIGHT
Diff of changes:
diff --git a/COPYRIGHT b/COPYRIGHT
new file mode 100644
index 0000000..3c5bfd8
--- /dev/null
+++ b/COPYRIGHT
@@ -0,0 +1,34 @@
+
+ COPYRIGHT
+
+The following is a notice of limited availability of the code, and disclaimer
+which must be included in the prologue of the code and in all source listings
+of the code.
+
+Copyright Notice
+ + 2009 University of Chicago
+
+Permission is hereby granted to use, reproduce, prepare derivative works, and
+to redistribute to others. This software was authored by:
+
+Mathematics and Computer Science Division
+Argonne National Laboratory, Argonne IL 60439
+
+
+ GOVERNMENT LICENSE
+
+Portions of this material resulted from work developed under a U.S.
+Government Contract and are subject to the following license: the Government
+is granted for itself and others acting on its behalf a paid-up, nonexclusive,
+irrevocable worldwide license in this computer software to reproduce, prepare
+derivative works, and perform publicly and display publicly.
+
+ DISCLAIMER
+
+This computer code material was prepared, in part, as an account of work
+sponsored by an agency of the United States Government. Neither the United
+States, nor the University of Chicago, nor any of their employees, makes any
+warranty express or implied, or assumes any legal liability or responsibility
+for the accuracy, completeness, or usefulness of any information, apparatus,
+product, or process disclosed, or represents that its use would not infringe
+privately owned rights.
diff --git a/ae-blocking-parser.h b/ae-blocking-parser.h
index a044b05..d2ad79e 100644
--- a/ae-blocking-parser.h
+++ b/ae-blocking-parser.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AE_BLOCKING_PARSER_H__
#define __AE_BLOCKING_PARSER_H__
@@ -616,3 +622,12 @@ __ae_pbranch_##__pbranch_pos_str##_after: {}
#endif /* __AE_BLOCKING_PARSER_H__ */
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-ctl.c b/ae-ctl.c
index 1f53284..09ce1be 100644
--- a/ae-ctl.c
+++ b/ae-ctl.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "ae-ctl.h"
@@ -26,3 +32,12 @@ int ae_lone_pbranches_count(void)
triton_mutex_unlock(&ae_lone_pbranch_mutex);
return ret;
}
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-ctl.h b/ae-ctl.h
index 4e27594..7db638b 100644
--- a/ae-ctl.h
+++ b/ae-ctl.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AE_CTL_H__
#define __AE_CTL_H__
@@ -253,3 +259,12 @@ static inline enum ae_pwait_command ae_ctl_pwait_init_done(struct ae_ctl *ctl)
}
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-debug.h b/ae-debug.h
index c344ee5..a215615 100644
--- a/ae-debug.h
+++ b/ae-debug.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef AE_DEBUG_H
#define AE_DEBUG_H
@@ -20,3 +26,12 @@ extern int aesop_dbg_blocking;
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-error.h b/ae-error.h
index 255f2ce..bdf0eda 100644
--- a/ae-error.h
+++ b/ae-error.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef AE_ERROR_H
#define AE_ERROR_H
@@ -21,3 +27,12 @@
#define AE_ERR_OTHER (-8) /* Other error */
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-init.c b/ae-init.c
index 2fb9734..f1df2e9 100644
--- a/ae-init.c
+++ b/ae-init.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "ae-init.h"
__attribute__((constructor)) void aesop_timer_init_register(void);
@@ -9,3 +15,12 @@ int ae_init (void)
aesop_timer_init_register ();
triton_aethread_init_register ();
}
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-init.h b/ae-init.h
index 37660c1..7571431 100644
--- a/ae-init.h
+++ b/ae-init.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef AE_AE_INIT_H
#define AE_AE_INIT_H
@@ -6,3 +12,12 @@ int ae_init (void);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-log.h b/ae-log.h
index 6dd7c61..5177f2e 100644
--- a/ae-log.h
+++ b/ae-log.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef AE_LOG_H
#define AE_LOG_H
@@ -8,3 +14,12 @@
#define aesop_err(...) fprintf(stderr, __VA_ARGS__)
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/ae-types.h b/ae-types.h
index 4fcdeb1..d0f2d1b 100644
--- a/ae-types.h
+++ b/ae-types.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef AE_TYPES_H
#define AE_TYPES_H
@@ -17,3 +23,12 @@
#define ae_op_id_equal(id1, id2) !memcmp(&id1, &id2, sizeof(ae_op_id_t))
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/aesop-support.hae b/aesop-support.hae
index 805ec16..0fc1111 100644
--- a/aesop-support.hae
+++ b/aesop-support.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AESOP_SUPPORT_HAE__
#define __AESOP_SUPPORT_HAE__
@@ -19,3 +25,12 @@
}
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/aesop.c b/aesop.c
index 15f32ee..05e6b29 100644
--- a/aesop.c
+++ b/aesop.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <string.h>
#include "aesop.h"
@@ -71,3 +77,12 @@ void aesop_finalize(void)
return;
}
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/aesop.h b/aesop.h
index 89276a4..05fe3a0 100644
--- a/aesop.h
+++ b/aesop.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AESOP_H__
#define __AESOP_H__
@@ -209,3 +215,12 @@ ae_op_id_t ae_id_gen(int resource_id, intptr_t ptr);
intptr_t ae_id_lookup(ae_op_id_t id, int *resource_id);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/hints.c b/hints.c
index 0da6553..b737311 100644
--- a/hints.c
+++ b/hints.c
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "ae-error.h"
#include "hints.h"
diff --git a/hints.h b/hints.h
index 5c3d17e..f45260d 100644
--- a/hints.h
+++ b/hints.h
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AE_HINTS_H__
#define __AE_HINTS_H__
diff --git a/op.h b/op.h
index 3ae17a7..515f7d0 100644
--- a/op.h
+++ b/op.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __OP_H__
#define __OP_H__
@@ -107,5 +113,5 @@ static inline struct ae_op * intptr2op (intptr_t op)
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/opcache.c b/opcache.c
index 0bdbecd..5928d10 100644
--- a/opcache.c
+++ b/opcache.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "aesop.h"
#include "opcache.h"
#include "jenkins-hash.h"
@@ -415,5 +421,5 @@ struct ae_op * ae_opcache_lookup(ae_opcache_t cache, cache_id_t id)
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/opcache.h b/opcache.h
index 72c9cd1..e313e89 100644
--- a/opcache.h
+++ b/opcache.h
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __OPCACHE_H__
#define __OPCACHE_H__
@@ -86,5 +92,5 @@ void ae_opcache_put(ae_opcache_t cache, struct ae_op *op);
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/parser/tests/blocking/afterwhile.ae b/parser/tests/blocking/afterwhile.ae
index e1e9bf5..18cac13 100644
--- a/parser/tests/blocking/afterwhile.ae
+++ b/parser/tests/blocking/afterwhile.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -32,3 +38,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/basic-struct-init.ae b/parser/tests/blocking/basic-struct-init.ae
index cb58ac6..5d4bfd6 100644
--- a/parser/tests/blocking/basic-struct-init.ae
+++ b/parser/tests/blocking/basic-struct-init.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
/* this example is known not to work in Aesop. See
* https://trac.mcs.anl.gov/projects/triton/ticket/39 for details.
*/
@@ -38,3 +44,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/basic-struct-return.ae b/parser/tests/blocking/basic-struct-return.ae
index 69d08ac..024f891 100644
--- a/parser/tests/blocking/basic-struct-return.ae
+++ b/parser/tests/blocking/basic-struct-return.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
@@ -41,3 +47,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/basic.ae b/parser/tests/blocking/basic.ae
index 442fdf2..c3fc841 100644
--- a/parser/tests/blocking/basic.ae
+++ b/parser/tests/blocking/basic.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
@@ -52,3 +58,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/btest-impl.c b/parser/tests/blocking/btest-impl.c
index 1503ec3..a8e3440 100644
--- a/parser/tests/blocking/btest-impl.c
+++ b/parser/tests/blocking/btest-impl.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdlib.h>
#include <stdio.h>
@@ -538,5 +544,5 @@ void btest_enable_immediate_cancel(void)
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/parser/tests/blocking/btest.hae b/parser/tests/blocking/btest.hae
index 68c86e9..22a5ef3 100644
--- a/parser/tests/blocking/btest.hae
+++ b/parser/tests/blocking/btest.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __BTEST_AEH__
#define __BTEST_AEH__
@@ -83,3 +89,12 @@ __blocking int tctest_random();
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/cancel-pbranch-loop.ae b/parser/tests/blocking/cancel-pbranch-loop.ae
index 626c7e0..87fa9e0 100644
--- a/parser/tests/blocking/cancel-pbranch-loop.ae
+++ b/parser/tests/blocking/cancel-pbranch-loop.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <unistd.h>
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
@@ -46,3 +52,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/cancel-pbranch1.ae b/parser/tests/blocking/cancel-pbranch1.ae
index 8a22f70..c208d70 100644
--- a/parser/tests/blocking/cancel-pbranch1.ae
+++ b/parser/tests/blocking/cancel-pbranch1.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <unistd.h>
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -160,3 +166,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/cancel-pbranch2.ae b/parser/tests/blocking/cancel-pbranch2.ae
index 21bbbb2..b4aa3f6 100644
--- a/parser/tests/blocking/cancel-pbranch2.ae
+++ b/parser/tests/blocking/cancel-pbranch2.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <unistd.h>
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
@@ -55,3 +61,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/cancel-pbranch3.ae b/parser/tests/blocking/cancel-pbranch3.ae
index f21ca57..a5dcb55 100644
--- a/parser/tests/blocking/cancel-pbranch3.ae
+++ b/parser/tests/blocking/cancel-pbranch3.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <unistd.h>
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
@@ -43,3 +49,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/cancel-pbranch4.ae b/parser/tests/blocking/cancel-pbranch4.ae
index cfcf5f9..ec99b34 100644
--- a/parser/tests/blocking/cancel-pbranch4.ae
+++ b/parser/tests/blocking/cancel-pbranch4.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <unistd.h>
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
@@ -38,3 +44,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/compound.ae b/parser/tests/blocking/compound.ae
index 135b552..e549c35 100644
--- a/parser/tests/blocking/compound.ae
+++ b/parser/tests/blocking/compound.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
@@ -49,3 +55,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/dowhileloop.ae b/parser/tests/blocking/dowhileloop.ae
index cb2b202..27b6eb4 100644
--- a/parser/tests/blocking/dowhileloop.ae
+++ b/parser/tests/blocking/dowhileloop.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -26,3 +32,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/forloop.ae b/parser/tests/blocking/forloop.ae
index 1ab2a0d..d02ab05 100644
--- a/parser/tests/blocking/forloop.ae
+++ b/parser/tests/blocking/forloop.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -32,3 +38,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/forloop2.ae b/parser/tests/blocking/forloop2.ae
index 8096efa..b80b09f 100644
--- a/parser/tests/blocking/forloop2.ae
+++ b/parser/tests/blocking/forloop2.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -30,3 +36,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/forloop3.ae b/parser/tests/blocking/forloop3.ae
index d3d21ca..038d8a3 100644
--- a/parser/tests/blocking/forloop3.ae
+++ b/parser/tests/blocking/forloop3.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -32,3 +38,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/funptrs.ae b/parser/tests/blocking/funptrs.ae
index f567228..3938a55 100644
--- a/parser/tests/blocking/funptrs.ae
+++ b/parser/tests/blocking/funptrs.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -76,3 +82,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/icpfor.ae b/parser/tests/blocking/icpfor.ae
index 77ac9e4..74d1718 100644
--- a/parser/tests/blocking/icpfor.ae
+++ b/parser/tests/blocking/icpfor.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -35,3 +41,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/if.ae b/parser/tests/blocking/if.ae
index 0de4446..ba257f3 100644
--- a/parser/tests/blocking/if.ae
+++ b/parser/tests/blocking/if.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -43,3 +49,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/ifnbelse.ae b/parser/tests/blocking/ifnbelse.ae
index 3eb7d35..55d2f81 100644
--- a/parser/tests/blocking/ifnbelse.ae
+++ b/parser/tests/blocking/ifnbelse.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -32,3 +38,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/ifnoelse.ae b/parser/tests/blocking/ifnoelse.ae
index a4c5f93..18f3292 100644
--- a/parser/tests/blocking/ifnoelse.ae
+++ b/parser/tests/blocking/ifnoelse.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -28,3 +34,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/ifnoelse2.ae b/parser/tests/blocking/ifnoelse2.ae
index 83a1b57..bba4176 100644
--- a/parser/tests/blocking/ifnoelse2.ae
+++ b/parser/tests/blocking/ifnoelse2.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -30,3 +36,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/lonely-pbranch-variable-scope.ae b/parser/tests/blocking/lonely-pbranch-variable-scope.ae
index c533b36..5906764 100644
--- a/parser/tests/blocking/lonely-pbranch-variable-scope.ae
+++ b/parser/tests/blocking/lonely-pbranch-variable-scope.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
diff --git a/parser/tests/blocking/lonely-pbranch.ae b/parser/tests/blocking/lonely-pbranch.ae
index 39893c3..7565214 100644
--- a/parser/tests/blocking/lonely-pbranch.ae
+++ b/parser/tests/blocking/lonely-pbranch.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
diff --git a/parser/tests/blocking/lonely-pbranch2.ae b/parser/tests/blocking/lonely-pbranch2.ae
index 909bacc..d25f3bb 100644
--- a/parser/tests/blocking/lonely-pbranch2.ae
+++ b/parser/tests/blocking/lonely-pbranch2.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
diff --git a/parser/tests/blocking/lonely-pbranch3.ae b/parser/tests/blocking/lonely-pbranch3.ae
index 6bf8a76..4cc53f9 100644
--- a/parser/tests/blocking/lonely-pbranch3.ae
+++ b/parser/tests/blocking/lonely-pbranch3.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
diff --git a/parser/tests/blocking/lonely-pbranch4.ae b/parser/tests/blocking/lonely-pbranch4.ae
index ec9a298..164fbc7 100644
--- a/parser/tests/blocking/lonely-pbranch4.ae
+++ b/parser/tests/blocking/lonely-pbranch4.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
diff --git a/parser/tests/blocking/mixed.ae b/parser/tests/blocking/mixed.ae
index aa8c5e8..8e433d7 100644
--- a/parser/tests/blocking/mixed.ae
+++ b/parser/tests/blocking/mixed.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -83,3 +89,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/multif.ae b/parser/tests/blocking/multif.ae
index b3b8503..1e746f5 100644
--- a/parser/tests/blocking/multif.ae
+++ b/parser/tests/blocking/multif.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -68,3 +74,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/nbfun.ae b/parser/tests/blocking/nbfun.ae
index 5694faa..b6c9bc3 100644
--- a/parser/tests/blocking/nbfun.ae
+++ b/parser/tests/blocking/nbfun.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -21,3 +27,12 @@ __blocking int aesop_main(int argc, char **argv)
return run_outer_nbfun1();
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/nested-forloop.ae b/parser/tests/blocking/nested-forloop.ae
index 4a3a6d2..0ebbd53 100644
--- a/parser/tests/blocking/nested-forloop.ae
+++ b/parser/tests/blocking/nested-forloop.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -27,3 +33,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/nested.ae b/parser/tests/blocking/nested.ae
index 038a960..93ac468 100644
--- a/parser/tests/blocking/nested.ae
+++ b/parser/tests/blocking/nested.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -26,3 +32,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/parallel1.ae b/parser/tests/blocking/parallel1.ae
index 9f861e7..dd0b22e 100644
--- a/parser/tests/blocking/parallel1.ae
+++ b/parser/tests/blocking/parallel1.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -43,3 +49,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/parallel2.ae b/parser/tests/blocking/parallel2.ae
index b81b96d..4d65e51 100644
--- a/parser/tests/blocking/parallel2.ae
+++ b/parser/tests/blocking/parallel2.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -54,3 +60,12 @@ __blocking int aesop_main(int argc, char **argv)
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/parallel3.ae b/parser/tests/blocking/parallel3.ae
index 372beec..9aeea2c 100644
--- a/parser/tests/blocking/parallel3.ae
+++ b/parser/tests/blocking/parallel3.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -70,3 +76,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/parallel4.ae b/parser/tests/blocking/parallel4.ae
index 451698c..62869d9 100644
--- a/parser/tests/blocking/parallel4.ae
+++ b/parser/tests/blocking/parallel4.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
@@ -68,3 +74,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/parallelfor.ae b/parser/tests/blocking/parallelfor.ae
index 907ab88..f3af064 100644
--- a/parser/tests/blocking/parallelfor.ae
+++ b/parser/tests/blocking/parallelfor.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -44,3 +50,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/parallelfor2.ae b/parser/tests/blocking/parallelfor2.ae
index c67989e..84992ca 100644
--- a/parser/tests/blocking/parallelfor2.ae
+++ b/parser/tests/blocking/parallelfor2.ae
@@ -1,3 +1,4 @@
+found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/parallelfor3.ae b/parser/tests/blocking/parallelfor3.ae
index 780c522..69a294e 100644
--- a/parser/tests/blocking/parallelfor3.ae
+++ b/parser/tests/blocking/parallelfor3.ae
@@ -1,3 +1,4 @@
+found something!
/*
* (C) 2009 The University of Chicago
*
diff --git a/parser/tests/blocking/params.ae b/parser/tests/blocking/params.ae
index 712e741..84f2ac1 100644
--- a/parser/tests/blocking/params.ae
+++ b/parser/tests/blocking/params.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -24,3 +30,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbranch-completion.ae b/parser/tests/blocking/pbranch-completion.ae
index f399975..33e6672 100644
--- a/parser/tests/blocking/pbranch-completion.ae
+++ b/parser/tests/blocking/pbranch-completion.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
/* RUN THIS IN VALGRIND!! */
@@ -76,3 +82,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbranch-with-return.ae b/parser/tests/blocking/pbranch-with-return.ae
index 3d98d42..025cbb5 100644
--- a/parser/tests/blocking/pbranch-with-return.ae
+++ b/parser/tests/blocking/pbranch-with-return.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <assert.h>
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -31,3 +37,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak-before-blocking.ae b/parser/tests/blocking/pbreak-before-blocking.ae
index 7b45382..78de7f6 100644
--- a/parser/tests/blocking/pbreak-before-blocking.ae
+++ b/parser/tests/blocking/pbreak-before-blocking.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
diff --git a/parser/tests/blocking/pbreak-immed-cancel.ae b/parser/tests/blocking/pbreak-immed-cancel.ae
index 9f0ac5e..f4042c9 100644
--- a/parser/tests/blocking/pbreak-immed-cancel.ae
+++ b/parser/tests/blocking/pbreak-immed-cancel.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -58,3 +64,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak.ae b/parser/tests/blocking/pbreak.ae
index 82a9435..a8053a2 100644
--- a/parser/tests/blocking/pbreak.ae
+++ b/parser/tests/blocking/pbreak.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -56,3 +62,12 @@ __blocking int aesop_main(int argc, char **argv)
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak2.ae b/parser/tests/blocking/pbreak2.ae
index bffe5fd..b1dce1e 100644
--- a/parser/tests/blocking/pbreak2.ae
+++ b/parser/tests/blocking/pbreak2.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -49,3 +55,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak3.ae b/parser/tests/blocking/pbreak3.ae
index 785e249..27848e6 100644
--- a/parser/tests/blocking/pbreak3.ae
+++ b/parser/tests/blocking/pbreak3.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -57,3 +63,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak4.ae b/parser/tests/blocking/pbreak4.ae
index c2e4063..65b5550 100644
--- a/parser/tests/blocking/pbreak4.ae
+++ b/parser/tests/blocking/pbreak4.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -67,3 +73,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak5.ae b/parser/tests/blocking/pbreak5.ae
index 9ca11d6..72b7e7e 100644
--- a/parser/tests/blocking/pbreak5.ae
+++ b/parser/tests/blocking/pbreak5.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -62,3 +68,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak6.ae b/parser/tests/blocking/pbreak6.ae
index ef469cf..7979c02 100644
--- a/parser/tests/blocking/pbreak6.ae
+++ b/parser/tests/blocking/pbreak6.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
@@ -56,3 +62,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pbreak7.ae b/parser/tests/blocking/pbreak7.ae
index b51fcf8..5bd3fef 100644
--- a/parser/tests/blocking/pbreak7.ae
+++ b/parser/tests/blocking/pbreak7.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
diff --git a/parser/tests/blocking/pbreak8.ae b/parser/tests/blocking/pbreak8.ae
index 117d09c..09f7484 100644
--- a/parser/tests/blocking/pbreak8.ae
+++ b/parser/tests/blocking/pbreak8.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include "parser/tests/blocking/btest.hae"
diff --git a/parser/tests/blocking/pprivate.ae b/parser/tests/blocking/pprivate.ae
index 4e37240..59cc87b 100644
--- a/parser/tests/blocking/pprivate.ae
+++ b/parser/tests/blocking/pprivate.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
diff --git a/parser/tests/blocking/pshared.ae b/parser/tests/blocking/pshared.ae
index 3f05e86..4fead9d 100644
--- a/parser/tests/blocking/pshared.ae
+++ b/parser/tests/blocking/pshared.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
#include <assert.h>
diff --git a/parser/tests/blocking/pwait-in-for.ae b/parser/tests/blocking/pwait-in-for.ae
index dec4ccd..b64cfb2 100644
--- a/parser/tests/blocking/pwait-in-for.ae
+++ b/parser/tests/blocking/pwait-in-for.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -44,3 +50,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/pwait-in-while.ae b/parser/tests/blocking/pwait-in-while.ae
index 0fb729d..579539a 100644
--- a/parser/tests/blocking/pwait-in-while.ae
+++ b/parser/tests/blocking/pwait-in-while.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -43,3 +49,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/tcpfor.ae b/parser/tests/blocking/tcpfor.ae
index 673fa2b..3a872a5 100644
--- a/parser/tests/blocking/tcpfor.ae
+++ b/parser/tests/blocking/tcpfor.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -35,3 +41,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/threefors.ae b/parser/tests/blocking/threefors.ae
index 02227a7..df2c241 100644
--- a/parser/tests/blocking/threefors.ae
+++ b/parser/tests/blocking/threefors.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -98,3 +104,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/twofors.ae b/parser/tests/blocking/twofors.ae
index 63c439b..6221796 100644
--- a/parser/tests/blocking/twofors.ae
+++ b/parser/tests/blocking/twofors.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -81,3 +87,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/whilebreak.ae b/parser/tests/blocking/whilebreak.ae
index 3a81e22..d391931 100644
--- a/parser/tests/blocking/whilebreak.ae
+++ b/parser/tests/blocking/whilebreak.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -30,3 +36,12 @@ __blocking int aesop_main(int argc, char **argv)
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/whilebreak2.ae b/parser/tests/blocking/whilebreak2.ae
index 2518d96..41b92a9 100644
--- a/parser/tests/blocking/whilebreak2.ae
+++ b/parser/tests/blocking/whilebreak2.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -27,3 +33,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/whilebreak3.ae b/parser/tests/blocking/whilebreak3.ae
index 7fe3680..16b0086 100644
--- a/parser/tests/blocking/whilebreak3.ae
+++ b/parser/tests/blocking/whilebreak3.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -34,3 +40,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/parser/tests/blocking/whileloop.ae b/parser/tests/blocking/whileloop.ae
index 042bf68..4d43701 100644
--- a/parser/tests/blocking/whileloop.ae
+++ b/parser/tests/blocking/whileloop.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include "parser/tests/blocking/btest.hae"
@@ -30,3 +36,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set(aesop_main);
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/resource.c b/resource.c
index 0215017..a090dd6 100644
--- a/resource.c
+++ b/resource.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "libev/ev.h"
#include <stddef.h>
#include <unistd.h>
@@ -887,5 +893,5 @@ int ae_resource_init_all(void)
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/resource.h b/resource.h
index 4b9065c..e1c3565 100644
--- a/resource.h
+++ b/resource.h
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __RESOURCE_H__
#define __RESOURCE_H__
@@ -107,7 +114,8 @@ static inline void aesop_print_stack(FILE *stream) { }
#endif /* __AE_RESOURCE_H__ */
/*
- * Local Variables:
+ * Local variables:
+ * c-indent-level: 4
* c-basic-offset: 4
* End:
*
diff --git a/resources/resourcebuilder/resourcebuilder.c b/resources/resourcebuilder/resourcebuilder.c
index 257d467..d7f062c 100644
--- a/resources/resourcebuilder/resourcebuilder.c
+++ b/resources/resourcebuilder/resourcebuilder.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
/* This needs to be the full path for make -- if relative,
* make will try to build ./resourcebuilder.h and fail.
*/
@@ -313,3 +319,12 @@ __attribute__((constructor)) void rb_init_register(void)
}
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/resources/resourcebuilder/resourcebuilder.hae b/resources/resourcebuilder/resourcebuilder.hae
index 3b0f7ea..eddc9a2 100644
--- a/resources/resourcebuilder/resourcebuilder.hae
+++ b/resources/resourcebuilder/resourcebuilder.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __RESOURCEBUILDER_RESOURCEBUILDER_HAE
#define __RESOURCEBUILDER_RESOURCEBUILDER_HAE
@@ -60,3 +66,12 @@ void rb_slot_destroy (rb_slot_t * slot);
__blocking int rb_slot_capture (rb_slot_t * slot);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/resources/resourcebuilder/test/cancel.ae b/resources/resourcebuilder/test/cancel.ae
index aeadd9d..27df2a4 100644
--- a/resources/resourcebuilder/test/cancel.ae
+++ b/resources/resourcebuilder/test/cancel.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include "aesop.h"
#include "resources/resourcebuilder/resourcebuilder.hae"
@@ -65,3 +71,12 @@ __blocking int test_main (int argc, char ** args)
}
aesop_main_set (test_main, "resourcebuilder");
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/resources/resourcebuilder/test/simple.ae b/resources/resourcebuilder/test/simple.ae
index 68f8124..bc7d493 100644
--- a/resources/resourcebuilder/test/simple.ae
+++ b/resources/resourcebuilder/test/simple.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include "aesop.h"
#include "resources/resourcebuilder/resourcebuilder.hae"
@@ -85,3 +91,12 @@ __blocking int test_main (int argc, char ** args)
}
aesop_main_set (test_main, "resourcebuilder");
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/resources/thread/aethread.c b/resources/thread/aethread.c
index 0dc77da..1f693a6 100644
--- a/resources/thread/aethread.c
+++ b/resources/thread/aethread.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <signal.h>
#include <time.h>
#include <sys/time.h>
@@ -284,5 +290,5 @@ void aethread_finalize(void)
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/resources/thread/aethread.hae b/resources/thread/aethread.hae
index 5267c3e..22ba598 100644
--- a/resources/thread/aethread.hae
+++ b/resources/thread/aethread.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AETHREAD_HAE__
#define __AETHREAD_HAE__
@@ -15,3 +21,12 @@ void aethread_finalize(void);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/resources/thread/test/aethread-cancel.ae b/resources/thread/test/aethread-cancel.ae
index fff0d6e..a33ecfb 100644
--- a/resources/thread/test/aethread-cancel.ae
+++ b/resources/thread/test/aethread-cancel.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include <unistd.h>
diff --git a/resources/thread/test/aethread-example.ae b/resources/thread/test/aethread-example.ae
index 69459e5..49e489d 100644
--- a/resources/thread/test/aethread-example.ae
+++ b/resources/thread/test/aethread-example.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include <unistd.h>
diff --git a/resources/timer/test/pthread-compare.ae b/resources/timer/test/pthread-compare.ae
index c3ac84a..cd9e696 100644
--- a/resources/timer/test/pthread-compare.ae
+++ b/resources/timer/test/pthread-compare.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <unistd.h>
#include <sys/time.h>
@@ -95,5 +101,5 @@ aesop_main_set(aesop_main);
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/resources/timer/test/timer-cancel.ae b/resources/timer/test/timer-cancel.ae
index 7c8c1bd..94f781a 100644
--- a/resources/timer/test/timer-cancel.ae
+++ b/resources/timer/test/timer-cancel.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include <aesop/aesop.h>
diff --git a/resources/timer/test/timer1.ae b/resources/timer/test/timer1.ae
index 5a4f283..5356ccf 100644
--- a/resources/timer/test/timer1.ae
+++ b/resources/timer/test/timer1.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include <aesop/aesop.h>
diff --git a/resources/timer/test/timer2.ae b/resources/timer/test/timer2.ae
index 2f053c6..59fc4b3 100644
--- a/resources/timer/test/timer2.ae
+++ b/resources/timer/test/timer2.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include <aesop/aesop.h>
@@ -53,7 +60,8 @@ __blocking int aesop_main(int argc, char **argv)
aesop_main_set(aesop_main);
/*
- * Local Variables:
+ * Local variables:
+ * c-indent-level: 4
* c-basic-offset: 4
* End:
*
diff --git a/resources/timer/timer.c b/resources/timer/timer.c
index b21977d..ed8fa21 100644
--- a/resources/timer/timer.c
+++ b/resources/timer/timer.c
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#define _GNU_SOURCE
@@ -322,5 +328,5 @@ static void timer_cb(EV_P_ ev_timer *w, int revents)
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/resources/timer/timer.hae b/resources/timer/timer.hae
index c8f7c3a..eeae1a5 100644
--- a/resources/timer/timer.hae
+++ b/resources/timer/timer.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __TRITON_TIMER_HAE__
#define __TRITON_TIMER_HAE__
@@ -16,3 +22,12 @@ void aesop_timer_finalize(void);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/src/aefile/aefile.ae b/src/aefile/aefile.ae
index c592081..0324f48 100644
--- a/src/aefile/aefile.ae
+++ b/src/aefile/aefile.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#define _GNU_SOURCE
#define _XOPEN_SOURCE 600
@@ -137,3 +143,12 @@ __blocking int aefile_unlink(const char *pathname)
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/src/aefile/aefile.hae b/src/aefile/aefile.hae
index 803f365..8db2a1b 100644
--- a/src/aefile/aefile.hae
+++ b/src/aefile/aefile.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __AEFILE_HAE__
#define __AEFILE_HAE__
@@ -18,3 +24,12 @@ __blocking int aefile_unlink(const char *pathname);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/src/aefile/test/aefile-example.ae b/src/aefile/test/aefile-example.ae
index 221a2ea..6964f8f 100644
--- a/src/aefile/test/aefile-example.ae
+++ b/src/aefile/test/aefile-example.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <stdio.h>
#include <unistd.h>
diff --git a/src/c-utils b/src/c-utils
index 33877b0..d907964 160000
--- a/src/c-utils
+++ b/src/c-utils
@@ -1 +1 @@
-Subproject commit 33877b08245dc805447c83fcdf349a4cab227031
+Subproject commit d907964b6074e401fa34635e956141e26b391087
diff --git a/src/socket/aesocket.ae b/src/socket/aesocket.ae
index 8c2d9b6..0dd205f 100644
--- a/src/socket/aesocket.ae
+++ b/src/socket/aesocket.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "aesocket.hae"
#include "resources/resourcebuilder/resourcebuilder.hae"
@@ -408,5 +414,5 @@ __blocking int aesocket_write(
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/src/socket/aesocket.hae b/src/socket/aesocket.hae
index 3be3276..1fe2ca5 100644
--- a/src/socket/aesocket.hae
+++ b/src/socket/aesocket.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef SOCKET_TRITON_SOCKET_HAE
#define SOCKET_TRITON_SOCKET_HAE
@@ -76,5 +82,5 @@ __blocking int aesocket_ready (int fd, int flags, int * err);
* c-basic-offset: 4
* End:
*
- * vim: ts=8 sts=4 sw=4 expandtab
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
*/
diff --git a/src/socket/test/simple.ae b/src/socket/test/simple.ae
index 697d7cd..539a321 100644
--- a/src/socket/test/simple.ae
+++ b/src/socket/test/simple.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include <aesop/timer.hae>
diff --git a/src/ssm/aessm.ae b/src/ssm/aessm.ae
index 4ff90e6..457abd0 100644
--- a/src/ssm/aessm.ae
+++ b/src/ssm/aessm.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "aesop.h"
#include "ae-error.h"
#include "resources/resourcebuilder/resourcebuilder.hae"
@@ -612,3 +618,12 @@ int aessm_finalize (aessm_t *aessm_id)
return AE_SUCCESS;
}
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/src/ssm/aessm.hae b/src/ssm/aessm.hae
index 497aee9..c510ec5 100644
--- a/src/ssm/aessm.hae
+++ b/src/ssm/aessm.hae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#ifndef __SSM_HAE__
#define __SSM_HAE__
@@ -29,3 +35,12 @@ __blocking int aessm_ping (ssm_me_id me, ssm_addr_id target_addr, ssm_evt_p evt)
__blocking int aessm_wait (ssm_me_id me, ssm_evt_p evt);
#endif
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/src/ssm/test/ssmget.ae b/src/ssm/test/ssmget.ae
index 23806f6..8cc6a2b 100644
--- a/src/ssm/test/ssmget.ae
+++ b/src/ssm/test/ssmget.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include <aesop/aessm.hae>
diff --git a/src/ssm/test/ssmmsg.ae b/src/ssm/test/ssmmsg.ae
index 0fa0655..6cf43e4 100644
--- a/src/ssm/test/ssmmsg.ae
+++ b/src/ssm/test/ssmmsg.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include <aesop/aessm.hae>
diff --git a/src/ssm/test/ssmping.ae b/src/ssm/test/ssmping.ae
index be78bbb..cc413fa 100644
--- a/src/ssm/test/ssmping.ae
+++ b/src/ssm/test/ssmping.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include <aesop/aessm.hae>
diff --git a/src/ssm/test/ssmput.ae b/src/ssm/test/ssmput.ae
index 431c040..ab21442 100644
--- a/src/ssm/test/ssmput.ae
+++ b/src/ssm/test/ssmput.ae
@@ -1,3 +1,10 @@
+found something!
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/aesop-support.hae>
#include <aesop/aessm.hae>
diff --git a/tests/blocking-overhead.ae b/tests/blocking-overhead.ae
index 32924d9..4843a13 100644
--- a/tests/blocking-overhead.ae
+++ b/tests/blocking-overhead.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include "aesop.h"
#include "resources/timer/timer.hae"
@@ -129,3 +135,12 @@ __blocking int aesop_main(int argc, char **argv)
aesop_main_set_with_init(NULL, "timer", aesop_main, "timer");
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
diff --git a/tests/test-hints.ae b/tests/test-hints.ae
index c0df784..083508e 100644
--- a/tests/test-hints.ae
+++ b/tests/test-hints.ae
@@ -1,3 +1,9 @@
+/*
+ * (C) 2009 The University of Chicago
+ *
+ * See COPYRIGHT in top-level directory.
+ */
+
#include <aesop/aesop.h>
#include <aesop/timer.hae>
@@ -51,3 +57,12 @@ __blocking int aesop_main(int argc, char **argv)
return 0;
}
aesop_main_set_with_init(NULL, "timer", aesop_main, "timer");
+
+/*
+ * Local variables:
+ * c-indent-level: 4
+ * c-basic-offset: 4
+ * End:
+ *
+ * vim: ft=c ts=8 sts=4 sw=4 expandtab
+ */
hooks/post-receive
--
aesop Repository
1
0