these updateBlocksize functions may be used *after* reader->configure, but *before* finalise()
| 128 | |
| 129 | // these updateBlocksize functions may be used *after* reader->configure, but *before* finalise() |
| 130 | int updateBlocksize(long length) { |
| 131 | int i; |
| 132 | for (i=0; i<nLevels; i++) { |
| 133 | dm->queryReadConfig(level[i], length); |
| 134 | } |
| 135 | return 1; |
| 136 | } |
| 137 | |
| 138 | /* same as above, however, takes time in seconds as parameter */ |
| 139 | int updateBlocksizeSec(double length) { |
nothing calls this directly
no test coverage detected