refactor(kernel/syscalls): add fixme comments for Ctrl+Alt+Del reboot commands

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-03-27 16:42:59 +00:00
parent ad0c1e15e0
commit 5ffb0e704d
Signed by: enderice2
GPG Key ID: FEB6B8A8507BA62E

View File

@ -2689,7 +2689,15 @@ static int linux_reboot(SysFrm *, int magic, int magic2, int cmd, void *arg)
break; break;
} }
case linux_LINUX_REBOOT_CMD_CAD_ON: case linux_LINUX_REBOOT_CMD_CAD_ON:
{
fixme("Enable reboot on Ctrl+Alt+Del");
return 0;
}
case linux_LINUX_REBOOT_CMD_CAD_OFF: case linux_LINUX_REBOOT_CMD_CAD_OFF:
{
fixme("Disable reboot on Ctrl+Alt+Del");
return 0;
}
case linux_LINUX_REBOOT_CMD_SW_SUSPEND: case linux_LINUX_REBOOT_CMD_SW_SUSPEND:
case linux_LINUX_REBOOT_CMD_KEXEC: case linux_LINUX_REBOOT_CMD_KEXEC:
{ {