Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to pass whatever arguments are passed into the MAIN thread to a "sub thread" I create with "pthread_create".

void *threadMainLoop(void *arg){
    char *arguments = (char*)arg;
    printf("arg 1 - %s\n", arguments[1]);

}

int main(int argc, char *argv[]){
    printf("Start of program execution\n");

    rc = pthread_create(&outboundThread, NULL, threadMainLoop, (void *) argv);
    printf("Thread create rc: %i, %d\n", rc, outboundThread);
    if(rc != 0){
        printf("Thread creation failed\n");
        exit(1);
    }
    pthread_join(outboundThread, NULL);
    return 0;
}

The above code does not work, can you please show me how I can access the ARGV array like "argv[0]" etc in the thread?

share|improve this question

2 Answers

up vote 4 down vote accepted

The argv in main is a char**, not a char*, and so that's what you should cast it back to in threadMainLoop.

share|improve this answer
Ooops -- never mind. You're right. I didn't read far enough. – Pete Wilson May 1 '11 at 18:17
Hi there,thanks for the feedback....much appreciated. I am pretty new to C, can you show me how I can cast back using char** in the "threadMainLoop"? – Lynton Grice May 2 '11 at 6:32
Hi there, the argv is a char *argv[] according to the GNU tutorial below? That is why I use it that way.....am I wrong? crasseux.com/books/ctutorial/argc-and-argv.html – Lynton Grice May 2 '11 at 6:34

This works now...thanks Steve for the push in the write direction.....

void *threadMainLoop(void *arg){
    char **arguments = (char**)arg;   
    printf("args[0] =%s\n", arguments[0]);
    printf("args[1] =%s\n", arguments[1]);
}

int main(int argc, char *argv[]){
    printf("Start of program execution\n");

    rc = pthread_create(&outboundThread, NULL, threadMainLoop, (void *) argv);
    printf("Thread create rc: %i, %d\n", rc, outboundThread);
    if(rc != 0){
        printf("Thread creation failed\n");
        exit(1);
    }
    pthread_join(outboundThread, NULL);
    return 0;
}
share|improve this answer

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.