When calling execl(...) I get an errno=2. What does it mean ? How can I know the meaning of this errno ?
|
|
Error code 2 means "File/Directory not found". In general, you could use the perror function to print a human readable string. |
||
|
|
|
|
I use the following script:
|
||
|
|
|
|
There's a few useful functions for dealing with
|
||
|
|
|
|
You can use For example:
Linux also supports the explicitly-threadsafe variant |
||
|
|
|
When you use strace (on Linux) to run your binary it will output the returns from system calls and what the error number means. This may sometimes be useful to you. |
||
|
|
|
|
Instead of running
|
||
|
|
|
|
call
Sample:
The manpages of |
|||
|
|
|
|
Here are the docs. that should tell you what it means and what to do with them. You should avoid using the numeric value and use the constants listed there as well, as the number may change between different systems. |
||
|
|
|
|
File or Directory not found. |
||
|
|
