Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建没有缓冲区的管道,但我发现只有setbuf()一个只适用于文件描述符的函数。你能推荐一些类似的管道吗?
setbuf()
如果您使用 来创建管道pipe,那么除了系统缓冲区之外,您已经拥有未缓冲的文件描述符。
pipe
setbuf如果您使用普通的系统文件描述符,则仅适用于 stdio 文件并且不会干扰。
setbuf