| 47 | } |
| 48 | |
| 49 | PTYDevice::PTYDevice(const char* name) : Device(name, TypePseudoterminalDevice){ |
| 50 | dirent.node = this; |
| 51 | } |
| 52 | |
| 53 | ssize_t PTYDevice::Read(size_t offset, size_t size, uint8_t *buffer){ |
| 54 | assert(pty); |
nothing calls this directly
no outgoing calls
no test coverage detected