Tagged Questions
programming concept applicable in the context of multi-threaded programs. A piece of code is thread-safe if it only manipulates shared data structures in a thread-safe manner, which enables safe execution by multiple threads at the same time. (Wikipedia)
59
votes
4answers
36k views
What is thread safe or non thread safe in PHP
I saw different binaries for php, like non thread or thread safe ? What does it mean this ? What is the difference between this packages ?
46
votes
3answers
31k views
Collection was modified; enumeration operation may not execute
I can't get to the bottom of this error, because when the debugger is attached, it does not seem to occur. Below is the code.
This is a WCF server in a Windows service. The method NotifySubscribers ...
43
votes
8answers
19k views
What's the best way of implementing a thread-safe Dictionary in .NET?
I was able to implement a thread-safe Dictionary in C# by deriving from IDictionary and defining a private SyncRoot object:
public class SafeDictionary<TKey, TValue>: IDictionary<TKey, ...
33
votes
7answers
2k views
Unit test for thread safe-ness?
I've written a class and many unit test, but I did not make it thread safe. Now, I want to make the class thread safe, but to prove it and use TDD, I want to write some failing unit tests before I ...
29
votes
6answers
18k views
Why is C# List<> not thread-safe?
from this site:
http://crfdesign.net/programming/top-10-differences-between-java-and-c
Unfortunately, List<> is not
thread-safe (C#’s ArrayList and Java’s
Vector are thread-safe). C# also ...
28
votes
10answers
1k views
Are +=, |=, &= etc atomic?
Are the "modify" operators like +=, |=, &= etc atomic?
I know ++ is atomic (if you perform x++; in two different threads "simultaneously", you will always end up with x increased by 2, as opposed ...
25
votes
3answers
430 views
Why is calling a Python lambda expression from C# not thread-safe?
I define a side-effect-free (pure) lambda expression in IronPython and assign it to a C# delegate. When invoking the delegate simultaneously from multiple threads i get exceptions of type ...
24
votes
4answers
651 views
Is the “switch” statement evaluation thread-safe?
Consider the following sample code:
class MyClass
{
public long x;
public void DoWork()
{
switch (x)
{
case 0xFF00000000L:
// do whatever...
...
20
votes
5answers
774 views
When to use the lock thread in C#?
I have a server which handles multiple incoming socket connections and creates 2 different threads where it stores the data in XML format.
I'm using the lock statement for thread safety almost in ...
20
votes
3answers
234 views
Is it possible to observe a partially-constructed object from another thread?
I've often heard that in the .NET 2.0 memory model, writes always use release fences. Is this true? Does this mean that even without explicit memory-barriers or locks, it is impossible to observe a ...
20
votes
4answers
4k views
Are function static variables thread-safe in GCC?
In the example code
void foo()
{
static Bar b;
...
}
compiled with GCC is it guaranteed that b will be created and initialized in a thread-safe manner ?
In gcc's man page, found the ...
19
votes
4answers
510 views
Is the null coalesce operator thread safe?
So this is the meat of the question: Can Foo.Bar ever return null? To clarify, can '_bar' be set to null after it's evaluated as non-null and before it's value is returned?
public class Foo
...
18
votes
4answers
453 views
How is BackgroundWorker.CancellationPending thread-safe?
The way to cancel a BackgroundWorker's operation is to call BackgroundWorker.CancelAsync():
// RUNNING IN UI THREAD
private void cancelButton_Click(object sender, EventArgs e)
{
...
18
votes
4answers
630 views
How should I architect my (mostly) text-based game server?
Think MUDs/MUCKs but maybe with avatars or locale illustrations. My language of choice is ruby.
I need to handle multiple persistent connections with data being asynchronously transferred between ...
18
votes
9answers
785 views
Is C#'s using statement abort-safe?
I've just finished reading "C# 4.0 in a Nutshell" (O'Reilly) and I think it's a great book for a programmer willing to switch to C#, but it left me wondering. My problem is the definition of using ...
18
votes
8answers
828 views
Why are immutable objects thread-safe?
class Unit {
private readonly string name;
private readonly double scale;
public Unit(string name, double scale) {
this.name = name;
this.scale = scale,
}
public ...
18
votes
7answers
2k views
What exactly is a reentrant function?
Most of the times, the definition of reentrance is quoted from Wikipedia:
A computer program or routine is
described as reentrant if it can be
safely called again before its
previous ...
18
votes
12answers
2k views
Should I always make my java-code thread-safe, or for performance-reasons do it only when needed?
If I create classes, that are used at the moment only in a single thread, should I make them thread-safe, even if I don't need that at the moment? It could be happen, that I later use this class in ...
16
votes
7answers
602 views
How does lock work exactly? C#
I see that for using thread unsafe objects we wrap the code with a lock like this -
private static readonly Object obj = new Object();
lock(obj)
{
//thread unsafe code
}
So what happens when ...
16
votes
5answers
695 views
Within a C# instance method, can 'this' ever be null?
I have a situation where very rarely a Queue of Objects is dequeuing a null. The only call to Enqueue is within the class itself:
m_DeltaQueue.Enqueue(this);
Very rarely, a null is dequeued from ...
16
votes
8answers
713 views
May volatile be in user defined types to help writing thread-safe code
I know, it has been made quite clear in a couple of questions/answers before, that volatile is related to the visible state of the c++ memory model and not to multithreading.
On the other hand, this ...
16
votes
4answers
732 views
How much thread-safety is too much?
I've been reading Java Concurrency in Practice lately – great book. If you think you know how concurrency works, but then most of the time you face the real issues, it feels like SWAG is the most you ...
16
votes
4answers
3k views
Are C# arrays thread safe?
In particular
Create a function to take an array and an index as parameters.
Create a n element array.
Create a n count loop.
Inside the loop on a new thread assign a new instance of the object to ...
16
votes
2answers
3k views
Code Re-entrancy vs. Thread Safety
What is the difference between the concepts of "Code Re-entrancy" and "Thread Safety"? As per the link mentioned below, a piece of code can be either of them, both of them or neither of them.
...
15
votes
5answers
2k views
C#: How can I make an IEnumerable<T> thread safe?
Say I have this simple method:
public IEnumerable<uint> GetNumbers()
{
uint n = 0;
while(n < 100)
yield return n++;
}
How would you make this thread safe? And by that I ...
15
votes
2answers
7k views
Is PHP thread-safe
Is PHP (as of 5.2) thread-safe on Linux/UNIX?
Would it be possible to use it with Apache Worker-MPM or Event-MPM?
The facts I gathered so far are inconclusive:
default binaries included in most ...
15
votes
7answers
1k views
Achieving Thread-Safety
Question How can I make sure my application is thread-safe? Are their any common practices, testing methods, things to avoid, things to look for?
Background I'm currently developing a server ...
15
votes
3answers
4k views
Why aren't classes like BindingList or ObservableCollection thread-safe?
Time and time again I find myself having to write thread-safe versions of BindingList and ObservableCollection because, when bound to UI, these controls cannot be changed from multiple threads. What ...
14
votes
4answers
229 views
Thread safety in Java class
Why is this java class not Thread safe.
class TestClass {
private int x;
int get() {
return x;
}
void set(int x) {
this.x = x;
}
}
I read that keyword ...
14
votes
6answers
514 views
If Swing models' getters aren't thread-safe, how do you handle them?
It is well known that updating a Swing GUI must be done exclusively in the EDT. Less is advertised that reading stuff from the GUI must/should also be done in the EDT. For instance, let's take ...
14
votes
11answers
2k views
How to implement a multi-index dictionary?
Basically I want something like Dictionary<Tkey1, TKey2, TValue>, but not (as I've seen here in other question) with the keys in AND, but in OR. To better explain: I want to be able to find an ...
14
votes
4answers
2k views
Is SecureRandom thread safe?
Is SecureRandom thread safe? That is, after initializing it, can access to the next random number be relied on to be thread safe? Examining the source code seems to show that it is, and this bug ...
13
votes
8answers
215 views
In Java, is it required to synchronize write access to an array if each thread writes to a separate cell space?
Is it required to synchronize write access to an array in Java if each thread writes to a separate cell space?
EDIT: Specifically, the array is either a primitive Array or an immutable object array. ...
13
votes
4answers
2k views
C# event handlers not thread safe?
So i've read around that instead of calling a event directly with
if (SomeEvent != null)
SomeEvent(this, null);
i should be doing
SomeEventHandler temp = SomeEvent;
if (temp != null)
...
13
votes
6answers
707 views
Is there anyway to write the following as a C++ macro?
my_macro << 1 << "hello world" << blah->getValue() << std::endl;
should expand into:
std::ostringstream oss;
oss << 1 << "hello world" << ...
13
votes
5answers
789 views
Do I need to lock or mark as volatile when accessing a simple boolean flag in C#?
Lets just say you have a simple operation that runs on a background thread. You want to provide a way to cancel this operation so you create a boolean flag that you set to true from the click event ...
12
votes
1answer
188 views
Safety of Thread.current[] usage in rails
I keep getting conflicting opinions on the practice of storing information in the Thread.current hash (e.g., the current_user, the current subdomain, etc.). The technique has been proposed as a way to ...
12
votes
4answers
352 views
Is the random number generator in Haskell thread-safe?
Is the same "global random number generator" shared across all threads, or does each thread get its own?
If one is shared, how can I ensure thread-safety? The approach using getStdGen and setStdGen ...
12
votes
2answers
152 views
Thread-safe implementation of max
I need to implement global object collecting statistics for web server. I have Statistics singleton, which has method addSample(long sample), which subsequently call updateMax. This has to be ...
12
votes
2answers
281 views
Why does POSIX specify wctomb as non-thread-safe, but not mbtowc?
In XSH 2.9.1, wctomb is listed as one of the functions which is not required to be thread-safe. However, the opposite conversion function, mbtowc, does not appear in the list. On an implementation ...
12
votes
9answers
775 views
What is non-thread-safety for?
There are a lot of articles and discussions explaining why it is good to build thread-safe classes. It is said that if multiple threads access e.g. a field at the same time, there can only be some bad ...
12
votes
1answer
897 views
Why do I need a memory barrier?
C# 4 in a Nutshell (highly recommended btw) uses the following code to demonstrate the concept of MemoryBarrier (assuming A and B were run on different threads):
class Foo{
int _answer;
bool ...
12
votes
6answers
1k views
C++ Thread Safe Integer
I have currently created a C++ class for a thread safe integer which simply stores an integer privately and has public get a set functions which use a boost::mutex to ensure that only one change at a ...
12
votes
7answers
16k views
C# thread safety with get/set
This is a detail question for C#.
Suppose I've got a class with an object, and that object is protected by a lock:
Object mLock = new Object();
MyObject property;
public MyObject MyProperty {
...
11
votes
6answers
124 views
What is the correct way of adding thread-safety to an IDisposable object?
Imagine an implementation of the IDisposable interface, that has some public methods.
If an instance of that type is shared between multiple threads and one of the threads may dispose it, what is ...
11
votes
1answer
695 views
Thread Safety and Scope Management for .NET 4.0 ObjectCache
I'm using the new .NET 4.0 Caching API, ObjectCache. I've asked a few questions on this area the last few days, and i've hinted to this issue - but thought it's worthwhile to break it out into it's ...
11
votes
5answers
2k views
Peterson algorithm in Java?
Is there example implementation of Peterson algorithm for mutual exclusion in Java?
11
votes
7answers
3k views
Under C# is Int64 use on a 32 bit processor dangerous
I read in the MS documentation that assigning a 64-bit value on a 32-bit Intel computer is not an atomic operation; that is, the operation is not thread safe. This means that if two people ...
10
votes
1answer
145 views
lock(X) vs lock(typeof(X))
What is the difference between locking on a type of a class vs locking on the class itself?
For example:
private readonly object xmpp = new object();
lock (xmpp)
{
...
}
vs
lock ...
10
votes
3answers
252 views
Why is there no gcc/g++ warning for unused temporaries?
Consider the following code :
void ListenerImpl::attach(boost::shared_ptr<ISubscriber> subscriber)
{
boost::unique_lock<boost::mutex>(mtx);
subscribers.push_back(subscriber);
}
...