aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/sleep.c
blob: c7b8bbf1539d444613368d4bb6f4ad51fb05f419 (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
32
33
34
35
36
/* sleep.c - Wait for a number of seconds.
 *
 * Copyright 2007 Rob Landley <rob@landley.net>
 * Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>
 *
 * See http://opengroup.org/onlinepubs/9699919799/utilities/sleep.html

USE_SLEEP(NEWTOY(sleep, "<1", TOYFLAG_BIN))

config SLEEP
  bool "sleep"
  default y
  help
    usage: sleep LENGTH

    Wait before exiting. An optional suffix can be "m" (minutes), "h" (hours),
    "d" (days), or "s" (seconds, the default).


config SLEEP_FLOAT
  bool
  default y
  depends on SLEEP && TOYBOX_FLOAT
  help
    Length can be a decimal fraction.
*/

#include "toys.h"

void sleep_main(void)
{
  struct timespec tv;

  tv.tv_sec = xparsetime(*toys.optargs, 1000000000, &tv.tv_nsec);
  toys.exitval = !!nanosleep(&tv, NULL);
}