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

  • Home
  • SEARCH
  • 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 203963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:25:31+00:00 2026-05-11T17:25:31+00:00

I tried passing a structure as the 4th argument while using pthread_create() with something

  • 0

I tried passing a structure as the 4th argument while using pthread_create() with something like this:

pthread_create(&tid1, NULL, calca, &t); //t is the struct

Now whenever I try to access variables in the structure – t.a, t.b or t.c, I keep getting an error – request for member in something not a structure or union.

What alternate method could I use to pass structs into the thread?

  • 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-11T17:25:32+00:00Added an answer on May 11, 2026 at 5:25 pm

    You’re probably creating the structure in the same scope as pthread_create. This structure will no longer be valid once that scope is exited.

    Try creating a pointer to the structure on the heap and pass that structure pointer to your thread. Don’t forget to delete that memory somewhere (in the thread if you’ll never use it again – or when you no longer need it).

    Also, as cyberconte mentioned, if you are going to be accessing that data from different threads, you’ll need to lock access to it with a mutex or critical section.

    Edit May 14th, 2009 @ 12:19 PM EST: Also, as other people have mentioned, you have to cast your parameter to the correct type.

    If you are passing a variable that is a global structure (which you seem to be insisting upon), your thread function will have to cast to the type:

    void my_thread_func(void* arg){
        my_struct foo = *((my_struct*)(arg)); /* Cast the void* to our struct type */
        /* Access foo.a, foo.b, foo.c, etc. here */
    }
    

    Or, if you are passing a pointer to your structure:

    void my_thread_func(void* arg){
        my_struct* foo = (my_struct*)arg; /* Cast the void* to our struct type */
        /* Access foo->a, foo->b, foo->c, etc. here */
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 147k
  • Answers 147k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The outbound headers do not exist until much later than… May 12, 2026 at 9:10 am
  • Editorial Team
    Editorial Team added an answer I think these both blog post should help you solving… May 12, 2026 at 9:10 am
  • Editorial Team
    Editorial Team added an answer One way to do it would be to use the… May 12, 2026 at 9:10 am

Related Questions

I am new to threads and in need of help. I have a data
I've created a Vista sidebar widget that uses jQuery to fetch XML and display
I have a multi-threaded C++ app which does 3D rendering with the OpenSceneGraph library.
So like most new .NET developers you start of passing DataSets everywhere and although

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.