vote up 0 vote down star
1

Related to this question, what is the best practice for naming a mutex? I realize this may vary with OS and even with version (esp for Windows), so please specify platform in answering. My interest is in Win XP and Vista.

EDIT: I am motivated by curiousity, because in Rob Kennedy's comment under his (excellent) Answer to the above-linked Question, he implied that the choice of mutex name is non-trivial and should be the subject of a separate question.

EDIT2: The referenced question's goal was to ensure only a single instance of an app is running.

flag

If mghie's answer in that question was repeated here, I'd probably vote for it. – Stephen Denne Jan 21 at 6:52

2 Answers

vote up 2 vote down check

A really safe name for a global mutex is a description + a guid

For example:

"MyApp Single Instance Mutex : {c96f7db4-d743-4718-bef0-8533a198bcca}"

By using a name like this there is absolutely no chance someone else will use the same mutex name as your mutex.

EDIT

Sniffing around with process explorer, you can see that Guids are used in a few places, though in general they are not used. A pattern that does emerge though is that the word "MUTEX" is used quite a lot and Microsoft seem to like using capitols.

link|flag
...unless they copy your mutex's name intentionally... ;-) – Shog9 Jan 21 at 7:57
1  
I'd say using GUID in names is going overboard with uniqueness paranoia. – Mohit Nanda Jan 21 at 11:39
vote up 0 vote down

You could combine a description of what you're protecting against with the word "Guard"

link|flag

Your Answer

Get an OpenID
or

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