jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.4KB

  1. /*
  2. Copyright (C) 2001-2003 Paul Davis
  3. Copyright (C) 2004-2006 Grame
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 2.1 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  15. */
  16. #ifndef __JackTime__
  17. #define __JackTime__
  18. #include "types.h"
  19. #include "JackExports.h"
  20. #include <stdio.h>
  21. #ifdef __cplusplus
  22. extern "C"
  23. {
  24. #endif
  25. #if defined(__APPLE__)
  26. #include <mach/mach_time.h>
  27. #include <unistd.h>
  28. extern double __jack_time_ratio;
  29. static inline jack_time_t GetMicroSeconds(void) {
  30. return (jack_time_t) (mach_absolute_time () * __jack_time_ratio);
  31. }
  32. /* This should only be called ONCE per process. */
  33. extern void InitTime();
  34. static inline void JackSleep(long usec) {
  35. usleep(usec);
  36. }
  37. #endif
  38. #ifdef WIN32
  39. extern EXPORT LARGE_INTEGER _jack_freq;
  40. /*
  41. static jack_time_t GetMicroSeconds(void) {
  42. LARGE_INTEGER t1;
  43. QueryPerformanceCounter (&t1);
  44. return (jack_time_t)(((double)t1.QuadPart)/((double)_jack_freq.QuadPart));
  45. }
  46. */
  47. extern EXPORT jack_time_t GetMicroSeconds(void) ;
  48. extern void InitTime();
  49. static void JackSleep(long usec) {
  50. Sleep(usec / 1000);
  51. }
  52. #endif
  53. #ifdef linux
  54. #include <unistd.h>
  55. static inline void JackSleep(long usec) {
  56. usleep(usec);
  57. }
  58. #ifdef GETCYCLE_TIME
  59. #include "cycles.h"
  60. extern jack_time_t __jack_cpu_mhz;
  61. extern jack_time_t GetMhz();
  62. extern void InitTime();
  63. static inline jack_time_t GetMicroSeconds (void) {
  64. return get_cycles() / __jack_cpu_mhz;
  65. }
  66. #else
  67. #include <time.h>
  68. extern void InitTime();
  69. static inline jack_time_t GetMicroSeconds (void) {
  70. struct timespec ts;
  71. clock_gettime(CLOCK_MONOTONIC, &ts);
  72. return (jack_time_t)ts.tv_sec * 1000000 + ts.tv_nsec / 1000;
  73. }
  74. #endif
  75. #endif
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. #endif