Returns the message describing the last system error in errno.
| 7933 | |
| 7934 | // Returns the message describing the last system error in errno. |
| 7935 | std::string GetLastErrnoDescription() { |
| 7936 | return errno == 0 ? "" : posix::StrError(errno); |
| 7937 | } |
| 7938 | |
| 7939 | // This is called from a death test parent process to read a failure |
| 7940 | // message from the death test child process and log it with the FATAL |
no test coverage detected