2019-09-06 16:34:26 +03:00
|
|
|
#include <AK/String.h>
|
2019-06-07 12:49:31 +03:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2018-10-25 14:53:49 +03:00
|
|
|
|
2018-11-07 23:19:47 +03:00
|
|
|
void handle_sigint(int)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
if (argc != 2) {
|
|
|
|
printf("usage: sleep <seconds>\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
bool ok;
|
2019-05-08 20:21:51 +03:00
|
|
|
unsigned secs = String(argv[1]).to_uint(ok);
|
2018-11-07 23:19:47 +03:00
|
|
|
if (!ok) {
|
|
|
|
fprintf(stderr, "Not a valid number of seconds: \"%s\"\n", argv[1]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
struct sigaction sa;
|
|
|
|
memset(&sa, 0, sizeof(struct sigaction));
|
|
|
|
sa.sa_handler = handle_sigint;
|
|
|
|
sigaction(SIGINT, &sa, nullptr);
|
|
|
|
unsigned remaining = sleep(secs);
|
|
|
|
if (remaining) {
|
|
|
|
printf("Sleep interrupted with %u seconds remaining.\n", remaining);
|
|
|
|
}
|
2018-10-25 14:53:49 +03:00
|
|
|
return 0;
|
|
|
|
}
|