gpt4 book ai didi

c++ - 如何对设备执行非阻塞写入?

转载 作者:太空狗 更新时间:2023-10-29 21:29:34 25 4
gpt4 key购买 nike

是否可以使 write();不使用线程的非阻塞函数?

short buffer[BUFFER_LEN];
int readcount;

while ((readcount = sounds[index].read(buffer, BUFFER_LEN)))
write(audio_device, buffer, readcount * sizeof(short));

声音播放,但它会阻塞程序直到播放结束。

最佳答案

使用 fcntl 为文件设置 O_NONBLOCK 标志可能会起作用,但您需要准备好处理部分写入和 EWOULDBLOCK 错误。

关于c++ - 如何对设备执行非阻塞写入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4515754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com