summaryrefslogtreecommitdiffstats
path: root/src/H5FDros3.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 19:13:29 (GMT)
committerGitHub <noreply@github.com>2023-06-29 19:13:29 (GMT)
commitfd933f30b1f8cd487ad790ac0b054bb779280a62 (patch)
tree9e366b2c19f1d84e28af4e588daf7bd8c075f8b6 /src/H5FDros3.c
parentfd56a593b7928da636b2494b25cd7478fed78c29 (diff)
downloadhdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.zip
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.gz
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.bz2
Remove programmer/date from comments (#3210)
* Removes Programmer: and Date: fields * Fixes a few Modifications: fields leftover from previous work
Diffstat (limited to 'src/H5FDros3.c')
-rw-r--r--src/H5FDros3.c71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/H5FDros3.c b/src/H5FDros3.c
index 2804ef4..3628185e 100644
--- a/src/H5FDros3.c
+++ b/src/H5FDros3.c
@@ -13,9 +13,6 @@
/*
* Read-Only S3 Virtual File Driver (VFD)
*
- * Programmer: Jacob Smith
- * 2017-10-13
- *
* Purpose:
*
* Provide read-only access to files hosted on Amazon's S3 service.
@@ -117,10 +114,6 @@ static unsigned long long ros3_stats_boundaries[ROS3_STATS_BIN_COUNT];
*
* Largest read size in this bin.
*
- *
- *
- * Programmer: Jacob Smith
- *
***************************************************************************/
typedef struct {
unsigned long long count;
@@ -186,10 +179,6 @@ typedef struct {
*
* *** end ROS3_STATS ***
*
- *
- *
- * Programmer: Jacob Smith
- *
***************************************************************************/
typedef struct H5FD_ros3_t {
H5FD_t pub;
@@ -291,8 +280,6 @@ H5FL_DEFINE_STATIC(H5FD_ros3_t);
* Return: Success: The driver ID for the ros3 driver.
* Failure: Negative
*
- * Programmer: Jacob Smith 2017
- *
*-------------------------------------------------------------------------
*/
hid_t
@@ -340,8 +327,6 @@ done:
*
* Returns: SUCCEED (Can't fail)
*
- * Programmer: Jacob Smith 2017
- *
*---------------------------------------------------------------------------
*/
static herr_t
@@ -369,9 +354,6 @@ H5FD__ros3_term(void)
*
* Return: SUCCEED/FAIL
*
- * Programmer: John Mainzer
- * 9/10/17
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -417,9 +399,6 @@ done:
* Return: SUCCEED if instance of H5FD_ros3_fapl_t contains internally
* consistent data, FAIL otherwise.
*
- * Programmer: Jacob Smith
- * 9/10/17
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -453,9 +432,6 @@ done:
*
* Failure: Negative
*
- * Programmer: John Mainzer
- * 9/10/17
- *
*-------------------------------------------------------------------------
*/
herr_t
@@ -503,9 +479,6 @@ done:
*
* Failure: NULL
*
- * Programmer: John Mainzer
- * 9/8/17
- *
*-------------------------------------------------------------------------
*/
static void *
@@ -544,9 +517,6 @@ done:
*
* Failure: NULL
*
- * Programmer: John Mainzer
- * 9/8/17
- *
*-------------------------------------------------------------------------
*/
static void *
@@ -580,9 +550,6 @@ done:
*
* Return: SUCCEED (cannot fail)
*
- * Programmer: John Mainzer
- * 9/8/17
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -616,9 +583,6 @@ H5FD__ros3_fapl_free(void *_fa)
* - FAILURE: `FAIL`
* - Occurs if the file is invalid somehow
*
- * Programmer: Jacob Smith
- * 2017-12-08
- *
*----------------------------------------------------------------------------
*/
static herr_t
@@ -679,9 +643,6 @@ done:
*
* Failure: NULL
*
- * Programmer: Jacob Smith
- * 2017-11-02
- *
*-------------------------------------------------------------------------
*/
static H5FD_t *
@@ -828,8 +789,6 @@ done:
* - occurs if the file passed in is invalid
* - TODO: if stream is invalid? how can we check this?
*
- * Programmer: Jacob Smith
- *
*----------------------------------------------------------------------------
*/
static herr_t
@@ -1069,9 +1028,6 @@ done:
*
* SUCCEED/FAIL
*
- * Programmer: Jacob Smith
- * 2017-11-02
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1135,9 +1091,6 @@ done:
* - Equivalent: 0
* - Not Equivalent: -1
*
- * Programmer: Jacob Smith
- * 2017-11-06
- *
*-------------------------------------------------------------------------
*/
static int
@@ -1253,9 +1206,6 @@ done:
*
* Return: SUCCEED (Can't fail)
*
- * Programmer: John Mainzer
- * 9/11/17
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1291,9 +1241,6 @@ H5FD__ros3_query(const H5FD_t H5_ATTR_UNUSED *_file, unsigned long *flags)
*
* The end-of-address marker.
*
- * Programmer: Jacob Smith
- * 2017-11-02
- *
*-------------------------------------------------------------------------
*/
static haddr_t
@@ -1322,9 +1269,6 @@ H5FD__ros3_get_eoa(const H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type)
*
* SUCCEED (can't fail)
*
- * Programmer: Jacob Smith
- * 2017-11-03
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1356,9 +1300,6 @@ H5FD__ros3_set_eoa(H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type, haddr_t addr)
* EOF: the first address past the end of the "file", either the
* filesystem file or the HDF5 file.
*
- * Programmer: Jacob Smith
- * 2017-11-02
- *
*-------------------------------------------------------------------------
*/
static haddr_t
@@ -1387,9 +1328,6 @@ H5FD__ros3_get_eof(const H5FD_t *_file, H5FD_mem_t H5_ATTR_UNUSED type)
*
* SUCCEED/FAIL
*
- * Programmer: Jacob Smith
- * 2017-11-02
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1430,9 +1368,6 @@ done:
* - Unable to complete read.
* - Contents of buffer `buf` are undefined.
*
- * Programmer: Jacob Smith
- * 2017-11-??
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1507,9 +1442,6 @@ done:
*
* FAIL (Not possible with Read-Only S3 file.)
*
- * Programmer: Jacob Smith
- * 2017-10-23
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -1545,9 +1477,6 @@ done:
*
* FAIL (Not possible on Read-Only S3 files.)
*
- * Programmer: Jacob Smith
- * 2017-10-23
- *
*-------------------------------------------------------------------------
*/
static herr_t