summaryrefslogtreecommitdiffstats
path: root/src/H5FDsplitter.c
Commit message (Collapse)AuthorAgeFilesLines
* Clang-format of source filesAllen Byrne2020-09-301-285/+253
|
* Merge remote-tracking branch 'origin/develop' into namespace_cleanup_01Quincey Koziol2020-08-071-4/+6
|\
| * Squash merge of file locking fixesDana Robinson2020-08-031-19/+12
| |
* | Clean up private / package / static namespace issues (function naming, whichQuincey Koziol2020-08-061-450/+324
|/ | | | | | header file, FUNC_ENTER / LEAVE, etc). Removed remaining personal email addresses from library source code (still needs cleaned from other directories). Misc. warning, style, and whitespace cleanup.
* Patch a few holes in the Splitter VFD implementation.Jacob Smith2020-05-291-0/+3
| | | | | * Missing logfile close on driver-open failure. * Initialize empty string in test/vfd (logfile path in W/O compat check).
* Add Splitter VFD to library.Jacob Smith2020-03-131-0/+1467
* "Simultaneous and equivalent" Read-Write and Write-Only channels for file I/O. * Only supports drivers with the H5FD_FEAT_DEFAULT_VFD_COMPATIBLE flag for now, preventing issues with multi-file drivers. Add Mirror VFD to library. * Write-only operations over a network. * Uses TCP/IP sockets. * Server and auxiliary server-shutdown programs provided in a new directory, `utils/mirror_vfd`. * Automated testing via loopback ("remote" of localhost).