According to Wikipedia Mutual Exclusion means:
Mutual exclusion is a property of concurrency control, which is instituted for the purpose of preventing race conditions. It is the requirement that one thread of execution never enters its critical section at the same time that another concurrent thread of execution enters its own critical section.
Well in short it means execute only a part of the code by one thread at the same time.
