Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a simple C program that uses CRITICAL_SECTION. for some reason it seem to enter the CRITICAL_SECTION again and again and not really execute the code inside, causing the threads to deadlocked. i cannot seem to find the reason for this.

here is the code:

#include <windows.h>
#include <iostream>

#define N 100000000

CRITICAL_SECTION cs;

static DWORD WINAPI safe_increment(void *param)
{
   volatile long* x = (volatile long*)param;
   for(int i=0;i<N;++i)
      EnterCriticalSection(&cs);
      ++(*x);
      LeaveCriticalSection(&cs);
   return 0;
}

void main()
{
   InitializeCriticalSection(&cs);

  volatile long x = 0;

  HANDLE h[2];
  DWORD thread_id;

   int x = 0;

   h[0] = CreateThread(NULL,0,safe_increment,(void*)&x,0,&thread_id);
   h[1] = CreateThread(NULL,0,safe_increment,(void*)&x,0,&thread_id);
   WaitForMultipleObjects(2,h,TRUE,INFINITE);
   CloseHandle(h[0]);
   CloseHandle(h[1]);

   DeleteCriticalSection(&cs);

   std::cout << "Result of safe increment: " << x << "\n";
}

thank you!

Roy.

share|improve this question
1  
By the way, if you just want to increment an integer in a thread-safe way, you can use InterlockIncrement(). – André Caron Feb 21 '12 at 21:16
I see you are a Python programmer:) – marcin_j Feb 21 '12 at 21:19
i know, its the principle of it not working. – roybj Feb 21 '12 at 21:48

1 Answer

up vote 8 down vote accepted

Mistake in for loop. Should be:

for(int i=0;i<N;++i)
{ // <---
      EnterCriticalSection(&cs);
      ++(*x);
      LeaveCriticalSection(&cs);
} // <---

No braces so the for loop only executed EnterCriticalSection() and nothing else. The first thread that acquired the critical section never released it: deadlock.

share|improve this answer
OH MY GOD! i am an idiot!!! i guess it happens to everyone...thanks! this is truly death by copy-paste – roybj Feb 21 '12 at 21:48
@Roy : Or death by bad formatting... What editor are you using that doesn't normalize indentation for you? – ildjarn Feb 21 '12 at 21:55
@ildjarn hehe, actually, i wrote it in a presentation and then copy-pasted it into VS... – roybj Feb 21 '12 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.