This commit is contained in:
2025-12-15 13:20:58 +01:00
parent 7e02e20878
commit b064038c2d
9 changed files with 27 additions and 10 deletions

View File

@@ -12,9 +12,13 @@ void Application::action() { // NOLINT
text[4] = 0x30+id;
for (unsigned i = 1;; ++i) {
write(0, text, sizeof(text));
if(i==id)
write(1, text, sizeof(text));
if(i==id){
write(2, "kill", 4);
write(2, &text[4], 1);
write(2, " ", 1);
sys_exit();
}
sleep(1000);
}
}