mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-17 22:05:18 -05:00
test: BSD-like fixes
- rename devname -> pcmdev, it conflicts *BSD <stdlib.h> function - replace <values.h> -> <limits.h> and fix K&R style related warning - use config.h to determine include <malloc.h> - add OpenBSD support and fix printf() warning - fix warning Fixes: https://github.com/alsa-project/alsa-lib/pull/298 Signed-off-by: SASANO Takayoshi <uaa@uaa.org.uk> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
3b4cdbdf19
commit
44705e3a20
6 changed files with 26 additions and 13 deletions
|
|
@ -38,6 +38,15 @@
|
|||
#include <sys/time.h>
|
||||
#include <math.h>
|
||||
|
||||
#ifndef CLOCK_MONOTONIC_RAW
|
||||
#define CLOCK_MONOTONIC_RAW CLOCK_MONOTONIC
|
||||
#endif
|
||||
|
||||
#if defined(__OpenBSD__)
|
||||
#define sched_getparam(pid, parm) (-1)
|
||||
#define sched_setscheduler(pid, policy, parm) (-1)
|
||||
#endif
|
||||
|
||||
typedef struct timespec timestamp_t;
|
||||
|
||||
char *sched_policy = "rr";
|
||||
|
|
@ -839,9 +848,9 @@ int main(int argc, char *argv[])
|
|||
if (ok) {
|
||||
#if 1
|
||||
printf("Playback time = %li.%i, Record time = %li.%i, diff = %li\n",
|
||||
p_tstamp.tv_sec,
|
||||
(long)p_tstamp.tv_sec,
|
||||
(int)p_tstamp.tv_usec,
|
||||
c_tstamp.tv_sec,
|
||||
(long)c_tstamp.tv_sec,
|
||||
(int)c_tstamp.tv_usec,
|
||||
timediff(p_tstamp, c_tstamp));
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue