Skip to content
Advertisement

Segmentation Fault on pthread_create

I am having an issue with the following C code. The code itself is supposed to create 5 threads that simulate the Dining Philosophers problem in which threads are accessing shared data. The code follows:

JavaScript

I am on a Linux virtual machine, using gedit. The program compiles fine, but upon attempting to run it, I am getting a “Segmentation Fault” error, which is coming from the attempted thread creations, according to gdb. None of the related questions here that I found applied to my program.

Things I have tried:

  • Commenting out the vast majority of the code and attempting to create a single thread that simply runs runPhilosopher, which had been stripped to just a single printf statement. This resulted in the code seemingly not creating the thread, as there was no output.
  • Replacing NULL in the thread creations with &attr. This changed the error to Aborted, but did nothing else.
  • Using a single thread id for all of them, as I have in a previous program. This made no difference.
  • A few other odds and ends that I can’t remember

Does anybody see a simple solution that I’ve simply overlooked, or is there a serious flaw in my program? I can’t understand what the issue could be, but I fully admit that I’m hardly well-versed in C. Any help would be greatly appreciated!

Advertisement

Answer

Your problem is here:

JavaScript

You cast an integer to a pointer when you call pthread_create(), but then you cast it to a pointer in the thread function and proceed to dereference it.

Instead, try

JavaScript

Note that this may cause a compiler warning of sizeof(int) != sizeof(void*). You may want to cast to uintptr_t first.

Alternatively, you could store the int in a local variable and pass the address of this to pthread_create. Just be sure that all threads have stopped before the containing function returns.

Or, you could malloc a structure with this int as a member, and pass a pointer to it.

Advertisement