up vote 1 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

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

3 Answers

up vote 2 down vote accepted

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|improve this answer
...unless they copy your mutex's name intentionally... ;-) – Shog9 Jan 21 '09 at 7:57
2  
I'd say using GUID in names is going overboard with uniqueness paranoia. – Mohit Nanda Jan 21 '09 at 11:39
feedback

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

link|improve this answer
feedback

I haven't used GUID's in the past, but I'm starting to think its a good idea - if you think about all the developers in the world working of different software.

Unless you are thinking up quite obscure names that you can be assured are unique, you should think about GUID's.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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