/lib/libRTV/sleep.c

http://github.com/xbmc/xbmc · C · 44 lines · 26 code · 5 blank · 13 comment · 0 complexity · 29c7f507b642b7dbaf29e51c5d132712 MD5 · raw file

  1. #ifndef __GNUC__
  2. #pragma code_seg( "RTV_TEXT" )
  3. #pragma data_seg( "RTV_DATA" )
  4. #pragma bss_seg( "RTV_BSS" )
  5. #pragma const_seg( "RTV_RD" )
  6. #endif
  7. /*
  8. * Copyright (C) 2002 John Todd Larason <jtl@molehill.org>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. */
  20. #include "sleep.h"
  21. #ifdef _WIN32
  22. #include "windows.h"
  23. void rtv_sleep(u16 msec)
  24. {
  25. Sleep(msec);
  26. }
  27. #elif defined _XBOX
  28. #include "Xtl.h"
  29. void rtv_sleep(u16 msec)
  30. {
  31. Sleep(msec);
  32. }
  33. #else
  34. #include <unistd.h>
  35. void rtv_sleep(u16 msec)
  36. {
  37. usleep(msec * 1000);
  38. }
  39. #endif