show/hide this revision's text 2 added 2 characters in body; edited tags; edited title

Ideal way to single instance single-instance apps on the Mac

On Windows, it's common practice to create a named mutex and use the presence of that to determine that an instance of a given app is already running. This has its brawbacksdrawbacks, but mostly works.

I can think of a ways to do this on the macMac:1.

  1. named pthread mutexes2.
  2. enumerate running processes and look for one that matches3.
  3. create and lock a file

Is there something built into Cocoa/Carbon that's easier than the options above? If not, which of the three are most used on the mac? I would assume 2 or 3...

show/hide this revision's text 1

Ideal way to single instance apps on the Mac

On Windows, it's common practice to create a named mutex and use the presence of that to determine that an instance of a given app is already running. This has its brawbacks, but mostly works.

I can think of a ways to do this on the mac: 1. named pthread mutexes 2. enumerate running processes and look for one that matches 3. create and lock a file

Is there something built into Cocoa/Carbon that's easier than the options above? If not, which of the three are most used on the mac? I would assume 2 or 3...