Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I actually use execv instead of using execl. I just created an array and put arguments that I use in execl there and I put this array into execv. Well I know we have to use array for execv but why? What is the difference between execl and execv? They work same...

share|improve this question

1 Answer

There is no difference other than the format of the arguments. They will both end up calling the same underlying system call execve().

share|improve this answer
Why do we need the change the format of the arguments? I mean if they are doing same thing – Ahmet Tanakol Feb 3 '12 at 4:35
The execve() system call (and execv()) take the arguments in an array. execl() is just provided as a convenience, in case you have a fixed number of arguments, to allow you to avoid the trouble of setting up an array. execl() will store the function arguments in a temporary array itself and then make the system call. If you set up the argument array yourself then you have no need for execl(). – mark4o Feb 3 '12 at 4:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.