summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Besard <tim.besard@gmail.com>2011-11-21 11:02:03 +0100
committerTim Besard <tim.besard@gmail.com>2011-11-21 11:02:03 +0100
commit47ec5c7fd2d9e64a75808a5bf9f6448697ab23a7 (patch)
tree82da0f6faabe8882c3f9ce00e0747a51f8fbed80
parent3a4b0775bb1a35d1281fe0e2b5d4530ab896b9ce (diff)
Updated headers.
-rw-r--r--src/chain.h1
-rw-r--r--src/experiment.cpp1
-rw-r--r--src/experiment.h1
-rw-r--r--src/lock.h1
-rw-r--r--src/main.cpp1
-rw-r--r--src/output.cpp1
-rw-r--r--src/output.h1
-rw-r--r--src/run.cpp1
-rw-r--r--src/run.h1
-rw-r--r--src/spinbarrier.cpp14
-rw-r--r--src/spinbarrier.h17
-rw-r--r--src/thread.cpp1
-rw-r--r--src/thread.h1
-rw-r--r--src/timer.cpp1
-rw-r--r--src/timer.h1
-rw-r--r--src/types.h1
16 files changed, 19 insertions, 26 deletions
diff --git a/src/chain.h b/src/chain.h
index b929c4f..d33fa2d 100644
--- a/src/chain.h
+++ b/src/chain.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/experiment.cpp b/src/experiment.cpp
index c9e5771..a6fdb8a 100644
--- a/src/experiment.cpp
+++ b/src/experiment.cpp
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/experiment.h b/src/experiment.h
index 727719a..38aee3c 100644
--- a/src/experiment.h
+++ b/src/experiment.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/lock.h b/src/lock.h
index 69a0c8e..b118a9f 100644
--- a/src/lock.h
+++ b/src/lock.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/main.cpp b/src/main.cpp
index ae591b2..9684f58 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/output.cpp b/src/output.cpp
index ad4aa98..78a61da 100644
--- a/src/output.cpp
+++ b/src/output.cpp
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/output.h b/src/output.h
index 2229b33..42e3199 100644
--- a/src/output.h
+++ b/src/output.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/run.cpp b/src/run.cpp
index dc4ec96..57c03d8 100644
--- a/src/run.cpp
+++ b/src/run.cpp
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/run.h b/src/run.h
index 78fb577..486240b 100644
--- a/src/run.h
+++ b/src/run.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/spinbarrier.cpp b/src/spinbarrier.cpp
index e7d3b70..3699dcf 100644
--- a/src/spinbarrier.cpp
+++ b/src/spinbarrier.cpp
@@ -7,21 +7,9 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
-/******************************************************************************
- * *
- * SpinBarrier *
- * *
- * Author: Douglas M. Pase *
- * *
- * Date: September 21, 2000 *
- * Translated to C++, June 19, 2005 *
- * *
- * void barrier() *
- * *
- ******************************************************************************/
-
//
// Configuration
//
diff --git a/src/spinbarrier.h b/src/spinbarrier.h
index b0faaed..4f97fc2 100644
--- a/src/spinbarrier.h
+++ b/src/spinbarrier.h
@@ -7,21 +7,12 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
-/******************************************************************************
- * *
- * SpinBarrier *
- * *
- * Author: Douglas M. Pase *
- * *
- * Date: September 21, 2000 *
- * Translated to C++, June 19, 2005 *
- * Rewritten August 13,2005 *
- * *
- * void barrier() *
- * *
- ******************************************************************************/
+//
+// Configuration
+//
// Include guard
#if !defined(SPINBARRIER_H)
diff --git a/src/thread.cpp b/src/thread.cpp
index 54902cc..7de6b01 100644
--- a/src/thread.cpp
+++ b/src/thread.cpp
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/thread.h b/src/thread.h
index 146bf92..9a26579 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/timer.cpp b/src/timer.cpp
index 22015ff..25df55e 100644
--- a/src/timer.cpp
+++ b/src/timer.cpp
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/timer.h b/src/timer.h
index d10c926..bff0b2f 100644
--- a/src/timer.h
+++ b/src/timer.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//
diff --git a/src/types.h b/src/types.h
index a92e481..ab79f65 100644
--- a/src/types.h
+++ b/src/types.h
@@ -7,6 +7,7 @@
* *
* Contributors: *
* Douglas M. Pase - initial API and implementation *
+ * Tim Besard - prefetching, JIT compilation *
*******************************************************************************/
//