PipeFiles do not have or need a backend. Pass NullBackend to the parent for that.
| 55 | // PipeFiles do not have or need a backend. Pass NullBackend to the parent for |
| 56 | // that. |
| 57 | PipeFile(mode_t mode, std::shared_ptr<PipeData> data) |
| 58 | : DataFile(mode, NullBackend), data(data) { |
| 59 | // Reads are always from the front; writes always to the end. |
| 60 | seekable = false; |
| 61 | } |
| 62 | }; |
| 63 | } // namespace wasmfs |
nothing calls this directly
no outgoing calls
no test coverage detected