view toys/other/usleep.c @ 684:4d9fa8b8a300

Use stridx.
author Rob Landley <rob@landley.net>
date Fri, 02 Nov 2012 09:50:09 -0500
parents 6df4ccc0acbe
children 786841fdb1e0
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * usleep.c - Wait for a number of microseconds.
 *
 * Copyright 2012 Elie De Brauwer <eliedebrauwer@gmail.com>

USE_USLEEP(NEWTOY(usleep, "<1", TOYFLAG_BIN))

config USLEEP
	bool "usleep"
	default y
	help
	  usage: usleep MICROSECONDS

	  Pause for MICROSECONDS microseconds.

*/

#include "toys.h"

void usleep_main(void)
{
    struct timespec tv;
    long delay = atol(*toys.optargs);
    
    tv.tv_sec = delay/1000000;
    tv.tv_nsec = (delay%1000000) * 1000;
    toys.exitval = !!nanosleep(&tv, NULL);

}