| 507 | } |
| 508 | |
| 509 | int FileIo::close() { |
| 510 | int rc = 0; |
| 511 | if (munmap() != 0) |
| 512 | rc = 2; |
| 513 | if (p_->fp_) { |
| 514 | if (std::fclose(p_->fp_) != 0) |
| 515 | rc |= 1; |
| 516 | p_->fp_ = nullptr; |
| 517 | } |
| 518 | return rc; |
| 519 | } |
| 520 | |
| 521 | DataBuf FileIo::read(size_t rcount) { |
| 522 | if (rcount > size()) |
no outgoing calls