Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3433870
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:37:45+00:00 2026-05-18T07:37:45+00:00

If I want to pass a char* to various threads via pthread_create() and I

  • 0

If I want to pass a char* to various threads via pthread_create() and I want them to work independently what’s the simplest way to do it safely?

I notice I get unstable behavior if I do

pseudo code:

func1() { // part of a loop
    Create var.. 
    func2(var); 
}

func2(char* var) { // spawn a thread
    pthread_create(.....,&func3,(void*)var);
}

func3(void* var) {
    work with the var // unstable behavior
} 

There’s no need for any data communication, the threads just get the var and then ignore what the rest of the program is doing. They just work on the var they got.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T07:37:46+00:00Added an answer on May 18, 2026 at 7:37 am

    You don’t show the details of the “Create var…” part of your program, but as Christopher Hunt correctly answered, if it isn’t declared static, then it will go away when func1() returns. But worse than that, you said “no need for any data communication” and if you are creating the var once and accessing it from multiple threads you are having “data communication” whether you mean to or not (and the coordination of that parallel access to the var is up to you).

    If you want each thread to really have its own copy it can mess with without disturbing other threads, you could duplicate it before each call to pthread_create(). For example, you could call strdup() to allocate a private copy of the string for the new thread and pass that copy to pthread_create().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a function, and I want to pass an array of char* to
Possible Duplicate: C++ deprecated conversion from string constant to 'char*' I want to pass
I want to pass a big char* from cpp to .Net (preferably using COM).
I want to pass an argument to a function, which takes a const char
I want to pass a char ** pointer by value. Given the following code:
I have a 'unsigned char *' and I want to pass it on to
I want pass a class-instace to a method of an other and be sure
I want to pass a few variables to another page. Currently I'm using response.redirect
i want to pass large variables to a PHP script on another server with
I want to pass a variable to he buttonEvent method in the selector. [button

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.