summaryrefslogtreecommitdiffstats
path: root/src/H5Oshared.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-04-18 02:10:44 (GMT)
committerGitHub <noreply@github.com>2023-04-18 02:10:44 (GMT)
commit5d21a59c4e6f803bf3318a5d73fb7306cbe4ee10 (patch)
tree2dc193e97378bc31e8a829115722402f2eb2ef8b /src/H5Oshared.h
parent584243bc474302d332a1fde9e22586682fcf33ab (diff)
downloadhdf5-5d21a59c4e6f803bf3318a5d73fb7306cbe4ee10.zip
hdf5-5d21a59c4e6f803bf3318a5d73fb7306cbe4ee10.tar.gz
hdf5-5d21a59c4e6f803bf3318a5d73fb7306cbe4ee10.tar.bz2
Removes programmer/date lines from src headers (#2747)
Diffstat (limited to 'src/H5Oshared.h')
-rw-r--r--src/H5Oshared.h117
1 files changed, 38 insertions, 79 deletions
diff --git a/src/H5Oshared.h b/src/H5Oshared.h
index 3280c4b..b7d2353 100644
--- a/src/H5Oshared.h
+++ b/src/H5Oshared.h
@@ -11,16 +11,13 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
- *
* Purpose: This file contains inline definitions for "generic" routines
- * supporting a "shared message interface" (ala Java) for object
- * header messages that can be shared. This interface is
- * dependent on a bunch of macros being defined which define
- * the name of the interface and "real" methods which need to
- * be implemented for each message class that supports the
- * shared message interface.
+ * supporting a "shared message interface" (ala Java) for object
+ * header messages that can be shared. This interface is
+ * dependent on a bunch of macros being defined which define
+ * the name of the interface and "real" methods which need to
+ * be implemented for each message class that supports the
+ * shared message interface.
*/
#ifndef H5Oshared_H
@@ -31,16 +28,12 @@
*
* Purpose: Decode an object header message that may be shared.
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Pointer to the new message in native form
- * Failure: NULL
- *
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: Success: Pointer to the new message in native form
+ * Failure: NULL
*-------------------------------------------------------------------------
*/
static inline void *
@@ -90,16 +83,11 @@ done:
*
* Purpose: Encode an object header message that may be shared.
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Non-negative
- * Failure: Negative
- *
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: SUCCEED/FAIL
*-------------------------------------------------------------------------
*/
static inline herr_t
@@ -143,18 +131,14 @@ done:
/*-------------------------------------------------------------------------
* Function: H5O_SHARED_SIZE
*
- * Purpose: Returns the length of an encoded message.
+ * Purpose: Returns the length of an encoded message.
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Length
- * Failure: 0
- *
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: Success: Length
+ * Failure: 0
*-------------------------------------------------------------------------
*/
static inline size_t
@@ -198,16 +182,11 @@ done:
* Purpose: Decrement reference count on any objects referenced by
* message
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Non-negative
- * Failure: Negative
- *
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: SUCCEED/FAIL
*-------------------------------------------------------------------------
*/
static inline herr_t
@@ -249,16 +228,11 @@ done:
* Purpose: Increment reference count on any objects referenced by
* message
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Non-negative
- * Failure: Negative
- *
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: SUCCEED/FAIL
*-------------------------------------------------------------------------
*/
static inline herr_t
@@ -299,16 +273,11 @@ done:
*
* Purpose: Copies a message from _SRC to _DEST in file
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Non-negative
- * Failure: Negative
- *
- * Programmer: Quincey Koziol
- * Friday, January 19, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: SUCCEED/FAIL
*-------------------------------------------------------------------------
*/
static inline void *
@@ -366,12 +335,7 @@ done:
* file that this header file is included in, and must be defined
* prior to including this header file.
*
- * Return: Success: Non-negative
- * Failure: Negative
- *
- * Programmer: Peter Cao
- * May 25, 2007
- *
+ * Return: SUCCEED/FAIL
*-------------------------------------------------------------------------
*/
static inline herr_t
@@ -432,16 +396,11 @@ done:
*
* Purpose: Prints debugging info for a potentially shared message.
*
- * Note: The actual name of this routine can be different in each source
- * file that this header file is included in, and must be defined
- * prior to including this header file.
- *
- * Return: Success: Non-negative
- * Failure: Negative
- *
- * Programmer: Quincey Koziol
- * Saturday, February 3, 2007
+ * Note: The actual name of this routine can be different in each source
+ * file that this header file is included in, and must be defined
+ * prior to including this header file.
*
+ * Return: SUCCEED/FAIL
*-------------------------------------------------------------------------
*/
static inline herr_t