| 34 | } |
| 35 | |
| 36 | ssize_t Null::Write(size_t offset, size_t size, uint8_t *buffer){ |
| 37 | return size; |
| 38 | } |
| 39 | |
| 40 | ssize_t URandom::Read(size_t offset, size_t size, uint8_t *buffer){ |
| 41 | unsigned int num = (rand() ^ ((Timer::GetSystemUptime() / 2) * Timer::GetFrequency())) + rand(); |
nothing calls this directly
no outgoing calls
no test coverage detected