Is it possible to execute a process whose argc = 0? I need to execute a program but it is extremely important for its argc to be equal to 0. Is there a way to do that? I tried to put 2^32 arguments in the command line so that it appears as if argc = 0 but there is a maximum limit to the number of arguments.

link|improve this question

2  
what exactly are you trying to achieve? I mean, maybe there's another, simpler way to do it. – Aziz Nov 13 '11 at 18:48
1  
What is your operating system, and how are you executing this process? Is it user-activated or are you calling from another process? – ibid Nov 13 '11 at 18:49
1  
Can't you just set argc = 0 as the first line of main()? – Carl Norum Nov 13 '11 at 18:49
3  
also, this is related: stackoverflow.com/questions/2794150/when-can-argv0-have-null – Aziz Nov 13 '11 at 18:49
I have no control over the source code. But I know that in the source code, it exits if argc != 0. I am on linux ubuntu. I can activate it or I can call it from another process. – Keeto Nov 13 '11 at 18:52
show 3 more comments
feedback

2 Answers

up vote 4 down vote accepted

You can write a program that calls exec directly; that allows you to specify the command-line arguments (including the program name) and lack thereof.

link|improve this answer
Great, it works. But any idea how to pass arguments and still leave argc=0 – Keeto Nov 13 '11 at 19:29
1  
argc indicates the number of arguments (plus one, for the program name), so no, that's not possible. – ibid Nov 13 '11 at 19:32
feedback

You could write a C program that spawns/execs the other program with no argv, like:

#include <spawn.h>
#include <stdlib.h>

int main(int argc, char** argv, char** envp)
{
    pid_t pid;
    char* zero_argv[] = {NULL};
    posix_spawn(&pid, "./that_app", NULL, NULL, zero_argv, envp);

    int status;
    waitpid(&pid, &status, NULL);
    return 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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