I used the following code to verify the single instance of application. On Win XP X86 it is working fine, but on X64 after 3 to 4 minutes System generates StackOverflowException and causes the application to hang. after removing this check application is working fine..

Please tell me what should be the reason.

code is

static void Main()
   {
      bool instanceCountOne = false;

      using (Mutex mtex = new Mutex(true, "AppName", out instanceCountOne))
      {
         if (instanceCountOne)
         {
#if (DEBUG)
            RunInDebugMode();
#else
            RunInReleaseMode();
#endif
            mtex.ReleaseMutex();
         }
         else
         {
            MessageBox.Show(
               "An application instance is already running",
               "App Name",
               MessageBoxButtons.OK,
               MessageBoxIcon.Information);
         }
      }
  }

it crashes when single instance of application is running.

link|improve this question

68% accept rate
Does it crash after you tried to start a 2nd instance of the application? – Frank Bollack May 11 '10 at 12:09
it crashes when single instance of application is running. as other instance is not allowed. – Mohsan May 11 '10 at 12:19
No reason for SO is evident from this code. Add some logging calls to the code so you can at least tell us where it bombs on SO. – Hans Passant May 11 '10 at 12:32
there is no stack trace available when error occurred – Mohsan May 11 '10 at 12:49
You compile the code with AnyCPU platform? – Ikaso May 11 '10 at 13:44
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.