59.3k views
2 votes
- - - - - - - - - - - - occurs when multiple processes or threads read and write data items so

that the final result depends on the order of execution of instructions in the multiple processes.
A. Race condition
c. Mutual exclusion
B. Exception
d. Interrupt

User Argaen
by
7.6k points

1 Answer

5 votes
That would be a race condition. This occurs when multiple processes or threads try to access the same memory at the same time. To remedy this you would want to use a mutex or semaphore to lock certain areas of memory to only a single thread or process at a given time.
User Tomasz Mazur
by
8.5k points

No related questions found