A piece of code is thread-safe if it only manipulates data structures in a way that allows consistent execution of this code by multiple threads.
I have a webapp that I am in the middle of doing some load/performance testing on, particularily on a …
java multithreading synchronization thread-safety synchronizedTo rephrase the question: should I avoid sharing instances of classes which implement java.sql.Connection between different threads?
java multithreading jdbc thread-safety dbconnectionI was reading multi-threading in Java and I come across this Local variables are thread safe in Java. Since then …
java thread-safetyI am trying to create thread safe properties in C# and I want to make sure that I am on …
c# .net multithreading properties thread-safetyThe two methods Thread.Suspend() and Thread.Resume() are obsolete since .NET 2.0. Why? What are other alternatives and any examples?
c# .net-2.0 thread-safetyThis warning leads to a serious problem cause I really can't call the delegate outside of the main thread using …
ios multithreading cocoa-touch thread-safety uiapplicationConsider this code: public synchronized void onSignalsTimeout(List<SignalSpec> specs) { if (specs != null && specs.size() > 0) { …
java android multithreading thread-safety deadlockI thought thread safe, in particular, means it must satisfy the need for multiple threads to access the same shared …
c++ c multithreading concurrency thread-safetyHow do I find out whether the installed version of PHP is threadsafe or not thread safe? Please note that …
php iis thread-safetyRecently, I asked a question, with title as "Is malloc thread safe?", and inside that I asked, "Is malloc re-entrant?" …
c thread-safety reentrancy