Questions tagged [blocking-function-call]
The blocking-function-call tag has no summary.
4 questions
5
votes
3
answers
2k
views
Providing a non-blocking IO API in a C library
I am working on a C library (SlipRock) for interprocess communication.
The library currently exposes a simple, blocking API. This is easy to use, makes misuse (relatively) difficult (this is C after ...
2
votes
1
answer
2k
views
Feeding std::streambuf for Non-Blocking std::istream Read
I want to write small library to guide a child process for a specific needs (not trying to reinvent bicycle here).
My needs includes reading from child stdout and stderr. I want to implement this as ...