Added multithread aware status for plugins

This commit is contained in:
Abramo Bagnara 2001-02-27 18:21:31 +00:00
parent 3196ef28ae
commit a02e742609
7 changed files with 197 additions and 21 deletions

View file

@ -214,7 +214,7 @@ static int snd_pcm_hw_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp)
snd_pcm_hw_t *hw = pcm->private_data;
int fd = hw->fd;
if (ioctl(fd, SNDRV_PCM_IOCTL_DELAY, delayp) < 0) {
SYSERR("SNDRV_PCM_IOCTL_DELAY failed");
// SYSERR("SNDRV_PCM_IOCTL_DELAY failed");
return -errno;
}
return 0;