bottleros/Userland/SampleCodeModule/shell/commands/kill.c

15 lines
402 B
C

// This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "kill.h"
void kill(int argc, char ** argv) {
if (argc != 2) {
printStringLen("kill receives a pid\n", 21);
// sys_exit();
return;
}
int pid = atoi(argv[1], MAX_LEN);
sys_kill(pid);
// sys_exit();
}