xv6/kill.c

17 lines
269 B
C
Raw Permalink Normal View History

2023-01-04 17:04:31 +01:00
#include "types.h"
#include "stat.h"
#include "user.h"
int main(int argc, char **argv) {
int i;
if (argc < 2) {
printf(2, "usage: kill pid...\n");
exit();
}
for (i = 1; i < argc; i++) {
kill(atoi(argv[i]));
}
exit();
}