|
|
|
|
|
by bripeace
2940 days ago
|
|
Careful! Errno can be set even when there is not an error.it's value is only relevant when the return value of the function indicates an error. That said there are some functions where the possible return values can't indicate an error. In those cases errno should be set to zero before the function call and then a change during will alert you to an error. Why it's like this I have no idea but it's pretty annoying. |
|
The bit about errno possibly being non-zero but not indicating error unless the function does? I guess because the called function can itself call functions / libs which set errno and properly handle those (or just not care). Without the "errno only has meaning if the function returns error" guard, every single function needs to always reset errno to zero before returning, which is annoying and will almost certainly not happen in the majority of cases.
When the function has no way to communicate error, there is no other option but to use errno. But it's good that it's the exception, I imagine.