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 6741333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:42:44+00:00 2026-05-26T11:42:44+00:00

I got an error message of Segmentation fault (core dump) when I try to

  • 0

I got an error message of Segmentation fault (core dump) when I try to run this code.
Note: This is a really long program (almost 600 lines) so I only posted the ones that I ‘think’ is related. Let me know if more needed? Thanks in advance 🙂

#define CONSTANT 4

int main()
{
  pthread_t tid[CONSTANT];
  int i, check;
  for( i = 0; i < CONSTANT; i++ )
  {
     check = pthread_create( &tid[i], NULL, tFunction, (void *) CONSTANT );
  }
}

void * tFunction ( void * param )
{
  int num = * (int *) param;  /* Seg fault line */
}
  • 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-26T11:42:45+00:00Added an answer on May 26, 2026 at 11:42 am

    What you’re doing is:

    check = pthread_create( &tid[i], NULL, tFunction,(void *) 4);

    And treating the 4th argument as an int *, which it obviously isn’t. When you dereference the address 4 in tFunction you get a segfault.

    If you want to pass a pointer to an int with a value of 4, pass the address of an int variable, ie:

    #include <pthread.h>
    
    #define CONSTANT 4
    
    void * tFunction ( void * param )
    {
      int num = * (int *) param;  /* Seg fault line */
    }
    
    int main(void)
    {
      int arg = CONSTANT;
      pthread_t tid[CONSTANT];
      int i, check;
      for( i = 0; i < CONSTANT; i++ )
      {
         check = pthread_create( &tid[i], NULL, tFunction, (void *) &arg );
      }
    
      return 0;
    }
    

    EDIT: pthread_join is going to be useful so that you can wait for your threads to terminate before exiting your program.

    EDIT2: If you haven’t read the comments: You should ensure that if your passing a local variable (as with this example which was meant to show a very minor change to his code to get it working) that any new threads finish before the variable goes out of scope with the use of pthread_join, or to dynamically allocate memory for the variable on the heap.

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

Sidebar

Related Questions

I compile a Qt program with C++, and I got this error message: cannot
When i run my spring junit test i got this error message : Caused
I'm making a matriz multiplication program in OpenMPI, and I got this error message:
I was testing a program I am writing and I got this error message:
If I run the following code I got error message A public action method
I got this error message and I'm not quite sure whats wrong: Exception in
I just got this error message: ... from c:/ruby/lib/ruby/gems/1.8/gems/... ... 10 levels... from c:/ruby/lib/ruby/gems/1.8/gems/...
I've got a really odd error message that only occurs when I add the
I got this error from XCode: objc[8422]: FREED(id): message release sent to freed object=0x3b120c0
I got this error message Connection - Could not find SBO that match the

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.