2006-01-07 02:29:09 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Busybox utility routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Tito Ragusa <tito-wolit@tiscali.it>
|
|
|
|
*
|
|
|
|
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
|
|
|
*/
|
|
|
|
|
2006-04-03 22:09:31 +05:30
|
|
|
#include "libbb.h"
|
2006-01-07 02:29:09 +05:30
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC bb_do_delay(int seconds)
|
2006-01-07 02:29:09 +05:30
|
|
|
{
|
|
|
|
time_t start, now;
|
|
|
|
|
|
|
|
time(&start);
|
|
|
|
now = start;
|
|
|
|
while (difftime(now, start) < seconds) {
|
|
|
|
sleep(seconds);
|
|
|
|
time(&now);
|
|
|
|
}
|
|
|
|
}
|