summaryrefslogtreecommitdiffstats
path: root/tools/lib/io_timer.h
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r25956] [Merge r25954 from trunk]Albert Cheng2015-01-051-5/+4
| | | | | | | | | | | | | | | HDFFV-9046: reorganize hdf5/perform, step 2 Last changes had caused problems with Windows platform: 1. H5private.h in io_timer.h is not accessible in the distributed shared library of tools. Need to move it to io_timer.c. 2. debug_start_stop_time() would not be available outside of h5perf. Some favor of compiler does not like it. Screened it out for now. 3. mere "extern" is not good enough for Windows shared library. Must mark them as DLL. Need to mark them as "H5TOOLS_DLL". 4. STANDALONE mode is broken. Screened out the code for now. Tested: h5committest.
* [svn-r25948] [Merged r25946 from trunk]Albert Cheng2015-01-041-10/+0
| | | | | | Removed debug statments that use //. Tested: env CFLAGS=-ansi buildhdf5 in jam and parallel platypus.
* [svn-r25947] [merged changes from trunk r25940]Albert Cheng2015-01-041-0/+94
HDFFV-9046: reorganize hdf5/perform, step 2 Move timing measurement routines used by h5perf and h5perf_serial to tools/lib so that they can be used by other tools too. tools/lib/io_timer.c tools/lib/io_timer.h tools/perform/io_timer.c tools/perform/io_timer.h renamed perform/io_timer.[ch] to lib/io_timer.[ch] tools/lib/Makefile.am tools/lib/Makefile.in tools/lib/CMakeLists.txt tools/perform/Makefile.in tools/perform/Makefile.am tools/perform/CMakeLists.txt MANIFEST updated due to the move. Tested; h5committest and jam (serial)