-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
daaf637
commit 8cc171e
Showing
5 changed files
with
206 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* | ||
* $Id$ | ||
* PortAudio Portable Real-Time Audio Library | ||
* Latest Version at: http://www.portaudio.com | ||
* | ||
* Based on the Open Source API proposed by Ross Bencina | ||
* Copyright (c) 1999-2024 Ross Bencina, Phil Burk | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files | ||
* (the "Software"), to deal in the Software without restriction, | ||
* including without limitation the rights to use, copy, modify, merge, | ||
* publish, distribute, sublicense, and/or sell copies of the Software, | ||
* and to permit persons to whom the Software is furnished to do so, | ||
* subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR | ||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF | ||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
/* | ||
* The text above constitutes the entire PortAudio license; however, | ||
* the PortAudio community also makes the following non-binding requests: | ||
* | ||
* Any person wishing to distribute modifications to the Software is | ||
* requested to send the modifications to the original developer so that | ||
* they can be incorporated into the canonical version. It is also | ||
* requested that these non-binding requests be included along with the | ||
* license above. | ||
*/ | ||
|
||
#include "pa_pthread_util.h" | ||
|
||
PaUtilClockId PaPthreadUtil_NegotiateCondAttrClock( pthread_condattr_t *cattr ) | ||
{ | ||
#if PAUTIL_USE_POSIX_ADVANCED_REALTIME | ||
/* Set most suitable timeout clock and return its id. | ||
If a clock can't be set, return the default clock. | ||
*/ | ||
clockid_t clockId; | ||
|
||
/* try each potential clockid in order of preferences until one succeeds:*/ | ||
#if defined(CLOCK_BOOTTIME ) | ||
if( pthread_condattr_setclock( &cattr, CLOCK_BOOTTIME ) == 0 ) | ||
return CLOCK_BOOTTIME; | ||
#endif | ||
|
||
#if defined(CLOCK_MONOTONIC) | ||
if( pthread_condattr_setclock( &cattr, CLOCK_MONOTONIC ) == 0 ) | ||
return CLOCK_MONOTONIC; | ||
#endif | ||
|
||
#if defined(CLOCK_REALTIME) | ||
if( pthread_condattr_setclock( &cattr, CLOCK_REALTIME ) == 0 ) | ||
return CLOCK_REALTIME; | ||
#endif | ||
|
||
/* fallback to returning the current clock id*/ | ||
if ( pthread_condattr_getclock( &cattr, &clockId) == 0 ) | ||
return clockId; | ||
|
||
/* fallback to returning the default expected clock id*/ | ||
PA_DEBUG(( "%s: could not configure condattr clock\n", __FUNCTION__)); | ||
return CLOCK_REALTIME; | ||
#else /* not PAUTIL_USE_POSIX_ADVANCED_REALTIME */ | ||
return 0; /* dummy value */ | ||
#endif | ||
} | ||
|
||
void PaPthreadUtil_GetTime( PaUtilClockId clockId, struct timespec *ts ) | ||
{ | ||
#if PAUTIL_USE_POSIX_ADVANCED_REALTIME | ||
clock_gettime(clockId, ts); | ||
#else /* not PAUTIL_USE_POSIX_ADVANCED_REALTIME */ | ||
struct timeval tv; | ||
gettimeofday(&tv, NULL); | ||
ts->tv_sec = tv.tv_sec; | ||
ts->tv_nsec = tv.tv_usec * 1000; | ||
#endif | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* $Id$ | ||
* PortAudio Portable Real-Time Audio Library | ||
* Latest Version at: http://www.portaudio.com | ||
* | ||
* Based on the Open Source API proposed by Ross Bencina | ||
* Copyright (c) 1999-2024 Ross Bencina, Phil Burk | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files | ||
* (the "Software"), to deal in the Software without restriction, | ||
* including without limitation the rights to use, copy, modify, merge, | ||
* publish, distribute, sublicense, and/or sell copies of the Software, | ||
* and to permit persons to whom the Software is furnished to do so, | ||
* subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR | ||
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF | ||
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
/* | ||
* The text above constitutes the entire PortAudio license; however, | ||
* the PortAudio community also makes the following non-binding requests: | ||
* | ||
* Any person wishing to distribute modifications to the Software is | ||
* requested to send the modifications to the original developer so that | ||
* they can be incorporated into the canonical version. It is also | ||
* requested that these non-binding requests be included along with the | ||
* license above. | ||
*/ | ||
|
||
/** @file | ||
@ingroup unix_src | ||
*/ | ||
|
||
#ifndef PA_PTHREAD_UTIL_H | ||
#define PA_PTHREAD_UTIL_H | ||
|
||
#include <sys/types.h> /* clockid_t */ | ||
#include <time.h> /* timespec */ | ||
#include <pthread.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" | ||
{ | ||
#endif /* __cplusplus */ | ||
|
||
/* | ||
Use the presence of CLOCK_REALTIME as a proxy for the availability of | ||
pthread_condattr_setclock, pthread_condattr_getclock and clock_gettime. | ||
Otherewise use a fallback path. | ||
On Apple, stick with default unix time using gettimeofday, | ||
since CLOCK_MONOTONIC is known to be buggy: | ||
https://discussions.apple.com/thread/253778121?sortBy=best | ||
And clock_gettime is not available pre-Sierra: | ||
https://stackoverflow.com/questions/5167269/clock-gettime-alternative-in-mac-os-x | ||
https://stackoverflow.com/a/21352348 | ||
*/ | ||
#ifdef CLOCK_REALTIME && !defined(__APPLE__) | ||
#define PAUTIL_USE_POSIX_ADVANCED_REALTIME 1 | ||
#else | ||
#define PAUTIL_USE_POSIX_ADVANCED_REALTIME 0 | ||
#endif | ||
|
||
#if PAUTIL_USE_POSIX_ADVANCED_REALTIME | ||
|
||
#define PaClockId clockid_t | ||
|
||
#else | ||
|
||
#define PaUtilClockId int /* dummy type */ | ||
|
||
#endif | ||
|
||
/** Negotiate the most suitable clock for condvar timeouts, set the clock | ||
* on cattr and return the clock's id. | ||
*/ | ||
PaUtilClockId PaPthreadUtil_NegotiateCondAttrClock( pthread_condattr_t *cattr ); | ||
|
||
/** Get the current time according to the clock referred to by clockId, as | ||
* previously returned by PaPthreadUtil_NegotiateCondAttrTimeoutClock(). | ||
*/ | ||
void PaPthreadUtil_GetTime( PaUtilClockId clockId, struct timespec *ts ); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif /* __cplusplus */ | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters