Questions tagged [io]
The io tag has no summary.
2 questions
1
vote
1
answer
352
views
Alternatives for stackless async I/O implementation?
I find it interesting to have stackless asynchronous I/O, e.g. when using an HTTP-client in the code, the call-stack get emptied before handling next "event" (could be unrelated or the ...
12
votes
1
answer
437
views
What prevented fopen() from utilizing macros/flags but not fseek()?
In C, fopen() uses string literals such as "r" or "r+" or ...