Returns the message describing the last system error in errno.
| 6458 | |
| 6459 | // Returns the message describing the last system error in errno. |
| 6460 | String GetLastErrnoDescription() { |
| 6461 | return String(errno == 0 ? "" : posix::StrError(errno)); |
| 6462 | } |
| 6463 | |
| 6464 | // This is called from a death test parent process to read a failure |
| 6465 | // message from the death test child process and log it with the FATAL |
no test coverage detected