Tagged Questions
2
votes
2answers
255 views
Standard POSIX read shadowed by a read method with different signature
I have a C++ File class with read function, that is supposed to read whole contents of a file (just like Python does) into a buffer. However, when I tried to call read function from unistd.h, I get:
...
1
vote
2answers
86 views
About the read() in unistd.h (C++)
all, I am designing a Key-Value server, and when I wrote the client, and I found a really strange thing,see the simplified code:
while(1)
{
printf("->:");
read(STDIN_FILENO, buf, ...