ualarm.c 598 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #define _GNU_SOURCE
  7. #include <time.h>
  8. #include <sys/time.h>
  9. #include <sys/types.h>
  10. #include <unistd.h>
  11. libc_hidden_proto(setitimer)
  12. useconds_t ualarm(useconds_t value, useconds_t interval)
  13. {
  14. struct itimerval otimer;
  15. const struct itimerval itimer = {
  16. { 0, interval },
  17. { 0, value}
  18. };
  19. if (setitimer(ITIMER_REAL, &itimer, &otimer) < 0) {
  20. return -1;
  21. }
  22. return((otimer.it_value.tv_sec * 1000000) + otimer.it_value.tv_usec);
  23. }