mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
a1e133cc6b
The HashMap API was overkill and made using this less ergonomic than it should be.
72 lines
1.6 KiB
C++
72 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/String.h>
|
|
#include <LibCore/ProcessStatisticsReader.h>
|
|
#include <ctype.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
static void print_usage_and_exit()
|
|
{
|
|
printf("usage: killall [-signal] process_name\n");
|
|
exit(1);
|
|
}
|
|
|
|
static int kill_all(const String& process_name, const unsigned signum)
|
|
{
|
|
auto processes = Core::ProcessStatisticsReader::get_all();
|
|
if (!processes.has_value())
|
|
return 1;
|
|
|
|
for (auto& process : processes.value()) {
|
|
if (process.name == process_name) {
|
|
int ret = kill(process.pid, signum);
|
|
if (ret < 0)
|
|
perror("kill");
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
unsigned signum = SIGTERM;
|
|
int name_argi = 1;
|
|
|
|
if (argc != 2 && argc != 3)
|
|
print_usage_and_exit();
|
|
|
|
if (argc == 3) {
|
|
name_argi = 2;
|
|
|
|
if (argv[1][0] != '-')
|
|
print_usage_and_exit();
|
|
|
|
Optional<unsigned> number;
|
|
|
|
if (isalpha(argv[1][1])) {
|
|
int value = getsignalbyname(&argv[1][1]);
|
|
if (value >= 0 && value < NSIG)
|
|
number = value;
|
|
}
|
|
|
|
if (!number.has_value())
|
|
number = String(&argv[1][1]).to_uint();
|
|
|
|
if (!number.has_value()) {
|
|
printf("'%s' is not a valid signal name or number\n", &argv[1][1]);
|
|
return 2;
|
|
}
|
|
signum = number.value();
|
|
}
|
|
|
|
return kill_all(argv[name_argi], signum);
|
|
}
|