Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-01 | Everywhere: Run clang-format | Idan Horowitz | |
2022-01-25 | Kernel: Use u64 instead of size_t for File::can_write offset | Idan Horowitz | |
This ensures offsets will not be truncated on large files on i686. | |||
2022-01-25 | Kernel: Use u64 instead of size_t for File::can_read offset | Idan Horowitz | |
This ensures offsets will not be truncated on large files on i686. | |||
2022-01-23 | Kernel/Devices: Introduce the Device Control Device | Liav A | |
This device will assist userspace to manage hotplug events. A userspace application reads a DeviceEvent entry until the return value is zero which indicates no events that are queued and waiting for processing. Trying to read with a buffer smaller than sizeof(DeviceEvent) results in EOVERFLOW. For now, there's no ioctl mechanism for this device but in the future an acknowledgement mechanism can be implemented via ioctl(2) interface. |