| 26 | class LogDevice : public Device{ |
| 27 | public: |
| 28 | LogDevice(char* name) : Device(name, TypeGenericDevice){ |
| 29 | flags = FS_NODE_FILE; |
| 30 | } |
| 31 | |
| 32 | ssize_t Read(size_t offset, size_t size, uint8_t *buffer){ |
| 33 | if(!logBuffer) return 0; |
nothing calls this directly
no outgoing calls
no test coverage detected