summaryrefslogtreecommitdiff
path: root/Userland/sleep.cpp
blob: a91001cc40f9053f1e2d67a345a4ef2fa2b742d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <AK/AKString.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>

void handle_sigint(int)
{
}

int main(int argc, char** argv)
{
    if (argc != 2) {
        printf("usage: sleep <seconds>\n");
        return 1;
    }
    bool ok;
    unsigned secs = String(argv[1]).to_uint(ok);
    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);
    }
    return 0;
}