bb_do_delay.c 388 B

12345678910111213141516171819202122
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Busybox utility routines.
  4. *
  5. * Copyright (C) 2005 by Tito Ragusa <tito-wolit@tiscali.it>
  6. *
  7. * Licensed under the GPL v2, see the file LICENSE in this tarball.
  8. */
  9. #include "libbb.h"
  10. void FAST_FUNC bb_do_delay(int seconds)
  11. {
  12. time_t start, now;
  13. time(&start);
  14. now = start;
  15. while (difftime(now, start) < seconds) {
  16. sleep(seconds);
  17. time(&now);
  18. }
  19. }