summaryrefslogtreecommitdiffstats
path: root/tools/lib/io_timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lib/io_timer.c')
-rw-r--r--tools/lib/io_timer.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/lib/io_timer.c b/tools/lib/io_timer.c
index d21f919c..15d8b4f 100644
--- a/tools/lib/io_timer.c
+++ b/tools/lib/io_timer.c
@@ -40,7 +40,6 @@ static io_time_t *timer_g; /* timer: global for stub functions */
* Purpose: Struct two time values, and return the difference, in microseconds
*
* Note that the function assumes that a > b
- * Programmer: Leon Arber, 1/27/06
*/
static double
sub_time(struct timeval *a, struct timeval *b)
@@ -56,7 +55,6 @@ sub_time(struct timeval *a, struct timeval *b)
* what type of timer they want (MPI_CLOCK for MPI_Wtime or
* SYS_CLOCK for system time).
* Return: Pointer to io_time object
- * Programmer: Bill Wendling, 01. October 2001
*/
io_time_t *
io_time_new(clock_type type)
@@ -76,7 +74,6 @@ io_time_new(clock_type type)
* need to call on a pointer allocated with the ``io_time_new''
* function.
* Return: Nothing
- * Programmer: Bill Wendling, 01. October 2001
*/
void
io_time_destroy(io_time_t *pt)
@@ -94,7 +91,6 @@ io_time_destroy(io_time_t *pt)
* This really only needs to be called if you didn't construct a
* timer with the pio_timer_new function (shame!).
* Return: Nothing
- * Programmer: Bill Wendling, 04. October 2001
*/
void
set_timer_type(io_time_t *pt, clock_type type)
@@ -106,7 +102,6 @@ set_timer_type(io_time_t *pt, clock_type type)
* Function: get_timer_type
* Purpose: Get the type of the timer.
* Return: MPI_CLOCK or SYS_CLOCK.
- * Programmer: Bill Wendling, 04. October 2001
*/
clock_type
get_timer_type(io_time_t *pt)
@@ -119,7 +114,6 @@ get_timer_type(io_time_t *pt)
* Function: io_time_set
* Purpose: Set the time in a ``io_time_t'' object.
* Return: Pointer to the passed in ``io_time_t'' object if SUCCEED; Null otherwise.
- * Programmer: Bill Wendling, 01. October 2001
*/
io_time_t *
io_time_set(io_time_t *pt, timer_type t, int start_stop)
@@ -208,7 +202,6 @@ io_time_set(io_time_t *pt, timer_type t, int start_stop)
* Function: io_time_get
* Purpose: Get the time from a ``io_time_t'' object.
* Return: The number of seconds as a DOUBLE.
- * Programmer: Bill Wendling, 01. October 2001
*/
H5_ATTR_PURE double
io_time_get(io_time_t *pt, timer_type t)