Which of the following system calls can return EINTR or EAGAIN/EWOULDBLOCK?
getsockname()
chdir()
bind()
fcntl()
listen()
setsid()
setsockopt()
socket()
stat()
unlink()
access()
accept()
open()
usleep()
dup2()
fork()
waitpid()
wait()
read()
write()
Some of these system calls return EINTR or EAGAIN on error (by the API of man pages).
Also some system calls exist that the API do not refer the EINTR/EAGAIN and however return these.
Please help.