Lines Matching refs:errno
10 #include <errno.h>
25 t_error("pipe failed: %s\n", strerror(errno));
30 t_error("dup(1) failed: %s\n", strerror(errno));
35 t_error("fork failed: %s\n", strerror(errno));
43 errno = 0;
47 t_error("failed to dup pipe fd for communicating results: %s\n", strerror(errno));
51 if (errno != EMFILE)
52 t_error("daemon should have failed with %d [EMFILE] got %d [%s]\n", EMFILE, errno, strerror(errno));
57 t_error("write failed: %s\n", strerror(errno));
62 t_error("waitpid failed: %s\n", strerror(errno));
69 t_error("read failed: %s\n", strerror(errno));