A safe thread is good, it means that while there may be several parallel threads, they talk to each other safely, which will not have race conditions, concurrency problems, etc.
Thread safety is a computer programming concept applicable in the context of multithreaded programs. A piece of code is thread-safe if it only manages common data structures in a thread-safe way that ensures that multiple threads can safely execute at the same time. There are various strategies for creating thread-safe data structures.
Source
source share