I think the question is self-explanatory.
I know exec runs on another process, so if I wanted to ls a directory I would do something like that.
int pid;
if((pid = fork()) != -1) {
if(!pid) {
execl("/bin/ls", "-a", "-l", (char *) 0);
} else {
wait(&status);
}
} else //error
That's fine if you want to create a process, but what about threads?. I though firs to create the thread and then the exec function but that would make the thread I just created have two process
以上就是is there a way to run any exec family function as a thread in c的详细内容,更多请关注web前端其它相关文章!