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.