summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 13:33:49 (GMT)
committerGitHub <noreply@github.com>2023-06-29 13:33:49 (GMT)
commita5f1fb01b9ef867cf94158cdb42ffb1d46bae916 (patch)
tree6960c9dfa61cf5b841729296b9fb7eed7c4531fa /src
parentdd39b54c953854837cc316d80618f65fdb70a04a (diff)
downloadhdf5-a5f1fb01b9ef867cf94158cdb42ffb1d46bae916.zip
hdf5-a5f1fb01b9ef867cf94158cdb42ffb1d46bae916.tar.gz
hdf5-a5f1fb01b9ef867cf94158cdb42ffb1d46bae916.tar.bz2
Remove some "Programmer" comments (#3209)
These are meaningless noise. Removes the "Programmer" lines on comment start lines: /* Programmer: John Smith These complicate my sed script that will rip out the rest of the comments.
Diffstat (limited to 'src')
-rw-r--r--src/H5B2stat.c4
-rw-r--r--src/H5B2test.c3
-rw-r--r--src/H5Dearray.c5
-rw-r--r--src/H5Dfarray.c5
-rw-r--r--src/H5Dnone.c17
-rw-r--r--src/H5Dselect.c4
-rw-r--r--src/H5Dsingle.c15
-rw-r--r--src/H5Dtest.c4
-rw-r--r--src/H5EAtest.c4
-rw-r--r--src/H5FDstdio.c5
-rw-r--r--src/H5Fdbg.c4
-rw-r--r--src/H5Gstab.c5
-rw-r--r--src/H5Gtest.c4
-rw-r--r--src/H5HFstat.c4
-rw-r--r--src/H5HFtest.c4
-rw-r--r--src/H5HGdbg.c4
-rw-r--r--src/H5HLdbg.c4
-rw-r--r--src/H5Obtreek.c4
-rw-r--r--src/H5Odrvinfo.c7
-rw-r--r--src/H5Oshmesg.c4
-rw-r--r--src/H5Otest.c4
-rw-r--r--src/H5P.c3
-rw-r--r--src/H5Pencdec.c3
-rw-r--r--src/H5Pint.c3
-rw-r--r--src/H5Ptest.c4
-rw-r--r--src/H5Sselect.c4
-rw-r--r--src/H5Stest.c4
27 files changed, 40 insertions, 95 deletions
diff --git a/src/H5B2stat.c b/src/H5B2stat.c
index 4b399ba..8942b28 100644
--- a/src/H5B2stat.c
+++ b/src/H5B2stat.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Monday, March 6, 2006
- *
+/*
* Purpose: v2 B-tree metadata statistics functions.
*
*/
diff --git a/src/H5B2test.c b/src/H5B2test.c
index 751fd6a..73a7073 100644
--- a/src/H5B2test.c
+++ b/src/H5B2test.c
@@ -10,8 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- *
+/*
* Purpose: v2 B-tree testing functions
*
*/
diff --git a/src/H5Dearray.c b/src/H5Dearray.c
index 87dc377..7403ee3 100644
--- a/src/H5Dearray.c
+++ b/src/H5Dearray.c
@@ -10,14 +10,11 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Tuesday, January 27, 2009
- *
+/*
* Purpose: Extensible array indexed (chunked) I/O functions. The chunks
* are given a single-dimensional index which is used as the
* offset in an extensible array that maps a chunk coordinate to
* a disk address.
- *
*/
/****************/
diff --git a/src/H5Dfarray.c b/src/H5Dfarray.c
index 7caef2c..0f4074e 100644
--- a/src/H5Dfarray.c
+++ b/src/H5Dfarray.c
@@ -10,13 +10,10 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Vailin Choi
- * Thursday, April 30, 2009
- *
+/*
* Purpose: Fixed array indexed (chunked) I/O functions.
* The chunk coordinate is mapped as an index into an array of
* disk addresses for the chunks.
- *
*/
/****************/
diff --git a/src/H5Dnone.c b/src/H5Dnone.c
index 2f54fb6..2994821 100644
--- a/src/H5Dnone.c
+++ b/src/H5Dnone.c
@@ -10,17 +10,16 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Vailin Choi
- * September 2010
- *
+/*
* Purpose: Implicit (Non Index) chunked I/O functions.
- * This is used when the dataset is:
- * extendible but with fixed max. dims
- * with early allocation
- * without filter
- * The chunk coordinate is mapped into the actual disk addresses
- * for the chunk without indexing.
*
+ * This is used when the dataset is:
+ * - extendible but with fixed max. dims
+ * - with early allocation
+ * - without filter
+ *
+ * The chunk coordinate is mapped into the actual disk addresses
+ * for the chunk without indexing.
*/
/****************/
diff --git a/src/H5Dselect.c b/src/H5Dselect.c
index 79f4269..31c46d5 100644
--- a/src/H5Dselect.c
+++ b/src/H5Dselect.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Thursday, September 30, 2004
- *
+/*
* Purpose: Dataspace I/O functions.
*/
diff --git a/src/H5Dsingle.c b/src/H5Dsingle.c
index 0ee1834..57f1126 100644
--- a/src/H5Dsingle.c
+++ b/src/H5Dsingle.c
@@ -10,15 +10,12 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Vailin Choi
- * May 2011; updated 10/2015
- *
- * Purpose: Single Chunk I/O functions.
- * This is used when the dataset has only 1 chunk (with or without filter):
- * cur_dims[] is equal to max_dims[] is equal to the chunk dims[]
- * non-filter chunk record: [address of the chunk]
- * filtered chunk record: [address of the chunk, chunk size, filter mask]
- *
+/*
+ * Purpose: Single Chunk I/O functions.
+ * This is used when the dataset has only 1 chunk (with or without filter):
+ * cur_dims[] is equal to max_dims[] is equal to the chunk dims[]
+ * non-filter chunk record: [address of the chunk]
+ * filtered chunk record: [address of the chunk, chunk size, filter mask]
*/
/****************/
diff --git a/src/H5Dtest.c b/src/H5Dtest.c
index d6e57c1..faeb03c 100644
--- a/src/H5Dtest.c
+++ b/src/H5Dtest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Thursday, May 27, 2004
- *
+/*
* Purpose: Dataset testing functions.
*/
diff --git a/src/H5EAtest.c b/src/H5EAtest.c
index 6167954..ac54a19 100644
--- a/src/H5EAtest.c
+++ b/src/H5EAtest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Thursday, August 28, 2008
- *
+/*
* Purpose: Extensible array testing functions.
*
*/
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c
index 9883d68..2e4473e 100644
--- a/src/H5FDstdio.c
+++ b/src/H5FDstdio.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Robb Matzke
- * Wednesday, October 22, 1997
- *
+/*
* Purpose: The C STDIO virtual file driver which only uses calls from stdio.h.
* This also serves as an example of coding a simple file driver,
* therefore, it should not use any non-public definitions.
@@ -20,6 +18,7 @@
* NOTE: This driver is not as well tested as the standard SEC2 driver
* and is not intended for production use!
*/
+
#include <assert.h>
#include <errno.h>
#include <stdio.h>
diff --git a/src/H5Fdbg.c b/src/H5Fdbg.c
index 2d22efa..28d2ce7 100644
--- a/src/H5Fdbg.c
+++ b/src/H5Fdbg.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Wednesday, July 9, 2003
- *
+/*
* Purpose: File object debugging functions.
*/
diff --git a/src/H5Gstab.c b/src/H5Gstab.c
index 9627340..00320e2 100644
--- a/src/H5Gstab.c
+++ b/src/H5Gstab.c
@@ -10,11 +10,6 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Robb Matzke
- * Friday, September 19, 1997
- *
- */
-
/****************/
/* Module Setup */
/****************/
diff --git a/src/H5Gtest.c b/src/H5Gtest.c
index f8c59dc..34ec853 100644
--- a/src/H5Gtest.c
+++ b/src/H5Gtest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Monday, October 17, 2005
- *
+/*
* Purpose: Group testing functions.
*/
diff --git a/src/H5HFstat.c b/src/H5HFstat.c
index d76fce5..d9170f6 100644
--- a/src/H5HFstat.c
+++ b/src/H5HFstat.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Monday, March 6, 2006
- *
+/*
* Purpose: Fractal heap metadata statistics functions.
*
*/
diff --git a/src/H5HFtest.c b/src/H5HFtest.c
index 35d16b2..11ea606 100644
--- a/src/H5HFtest.c
+++ b/src/H5HFtest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Thursday, February 3, 2006
- *
+/*
* Purpose: Fractal heap testing functions.
*
*/
diff --git a/src/H5HGdbg.c b/src/H5HGdbg.c
index a5b6665..90fbddd 100644
--- a/src/H5HGdbg.c
+++ b/src/H5HGdbg.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Wednesday, July 9, 2003
- *
+/*
* Purpose: Global Heap object debugging functions.
*/
diff --git a/src/H5HLdbg.c b/src/H5HLdbg.c
index dcf228f..59dd181 100644
--- a/src/H5HLdbg.c
+++ b/src/H5HLdbg.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Wednesday, July 9, 2003
- *
+/*
* Purpose: Local Heap object debugging functions.
*/
diff --git a/src/H5Obtreek.c b/src/H5Obtreek.c
index 7b80de8..87f6291 100644
--- a/src/H5Obtreek.c
+++ b/src/H5Obtreek.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Thursday, March 1, 2007
- *
+/*
* Purpose: A message holding non-default v1 B-tree 'K' value
* information in the superblock extension.
*/
diff --git a/src/H5Odrvinfo.c b/src/H5Odrvinfo.c
index 4c0ca93..9bf2a22 100644
--- a/src/H5Odrvinfo.c
+++ b/src/H5Odrvinfo.c
@@ -10,11 +10,8 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Thursday, March 1, 2007
- *
- * Purpose: A message holding driver info settings
- * in the superblock extension.
+/*
+ * Purpose: A message holding driver info settings in the superblock extension
*/
#include "H5Omodule.h" /* This source code file is part of the H5O module */
diff --git a/src/H5Oshmesg.c b/src/H5Oshmesg.c
index 5c9a199..52f3771 100644
--- a/src/H5Oshmesg.c
+++ b/src/H5Oshmesg.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: James Laird
- * Monday, January 29, 2007
- *
+/*
* Purpose: A message holding "implicitly shared object header message"
* information in the superblock extension.
*/
diff --git a/src/H5Otest.c b/src/H5Otest.c
index 41c8ed4..c870992 100644
--- a/src/H5Otest.c
+++ b/src/H5Otest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Monday, December 4, 2006
- *
+/*
* Purpose: Object header testing functions.
*/
diff --git a/src/H5P.c b/src/H5P.c
index 3aea232..427eb24 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -10,8 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- *
+/*
* Purpose: Generic Property Functions
*/
diff --git a/src/H5Pencdec.c b/src/H5Pencdec.c
index d75c52c..b963f21 100644
--- a/src/H5Pencdec.c
+++ b/src/H5Pencdec.c
@@ -10,8 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- *
+/*
* Purpose: Generic Property Functions
*/
diff --git a/src/H5Pint.c b/src/H5Pint.c
index 88f9550..fd47e27 100644
--- a/src/H5Pint.c
+++ b/src/H5Pint.c
@@ -10,8 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- *
+/*
* Purpose: Generic Property Functions
*/
diff --git a/src/H5Ptest.c b/src/H5Ptest.c
index 8470863..a77a2bf 100644
--- a/src/H5Ptest.c
+++ b/src/H5Ptest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Saturday May 31, 2003
- *
+/*
* Purpose: Generic Property Testing Functions
*/
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index ebe6e89..c956992 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Friday, May 29, 1998
- *
+/*
* Purpose: Dataspace selection functions.
*/
diff --git a/src/H5Stest.c b/src/H5Stest.c
index 4bbbf87..3326410 100644
--- a/src/H5Stest.c
+++ b/src/H5Stest.c
@@ -10,9 +10,7 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-/* Programmer: Quincey Koziol
- * Saturday, May 31, 2003
- *
+/*
* Purpose: Dataspace selection testing functions.
*/