passing arg 3 of `pthread_create' from incompatible pointer type
ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Re: Re: passing arg 3 of `pthread_create' from incompatible pointer type
freegianghu, you can't return NULL; from a function with a void return-type.
The problem is that sendThread is defined both as a function (by a forward declaration) and as a variable. The variable masks the definition of the function, and so both sendThread arguments passed to pthread_create are of type pthread_t.
Since the third argument to pthread_create is supposed to be a callback function, not a pthread_t, this won't compile.
Re: Re: Re: passing arg 3 of `pthread_create' from incompatible pointer type
Quote:
Originally posted by rjlee freegianghu, you can't return NULL; from a function with a void return-type.
The problem is that sendThread is defined both as a function (by a forward declaration) and as a variable. The variable masks the definition of the function, and so both sendThread arguments passed to pthread_create are of type pthread_t.
Since the third argument to pthread_create is supposed to be a callback function, not a pthread_t, this won't compile.
Sorry, I made a mistake . Its should be void *sendThread(void *rxLength)
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.