Tagged Questions
A race condition is when multiple threads/processes/clients all use a resource, without proper use of locks.
36
votes
8answers
14k views
What is a race condition?
When writing multi-threaded applications, one of the most common problems experienced are race conditions.
My question to the community, is:
What is a race condition? How do you detect them? How ...
17
votes
3answers
412 views
Race condition on x86
Could someone explain this statement:
shared variables
x = 0, y = 0
Core 1 Core 2
x = 1; y = 1;
r1 = y; r2 = x;
How is it possible to have r1 == 0 and r2 == 0 on x86 processors?
...
16
votes
7answers
3k views
Atomic operations in Django?
I'm trying to implement (what I think is) a pretty simple data model for a counter:
class VisitorDayTypeCounter(models.Model):
visitType = models.CharField(max_length=60)
visitDate = ...
15
votes
2answers
2k views
SQL Server Process Queue Race Condition
I have an order queue that is accessed by multiple order processors through a stored procedure. Each processor passes in a unique ID which is used to lock the next 20 orders for its own use. The ...
12
votes
2answers
137 views
Does something like CHESS exist for Java?
CHESS is a tool for finding and reproducing Heisenbugs in concurrent
programs. CHESS repeatedly runs a concurrent test ensuring that every
run takes a different interleaving. If an interleaving ...
11
votes
3answers
116 views
Static analysis tool to detect multithreading problems (deadlocks, race conditions, not-looped wait, etc.)
I am shopping for a STATIC ANALYSIS TOOL that can tell me if our code suffers from deadlocks, race conditions and bad practices in general.
I know that FindBugs and PMD do already something like ...
10
votes
3answers
158 views
Does writing the same value to the same memory location cause a data race?
Consider the following code that writes the same value to the same memory location from multiple threads:
void f(int* buf, int n, int* p) {
for(int i = 0; i < n; i++)
buf[i] = i;
...
10
votes
5answers
606 views
Race-condition creating folder in Python
I have a urllib2 caching module, which sporadically crashes because of the following code:
if not os.path.exists(self.cache_location):
os.mkdir(self.cache_location)
The problem is, by the time ...
9
votes
3answers
414 views
Why is `$@` untrustworthy?
I seem to recall that it is not safe to trust the value of $@ after an eval. Something about a signal handler having a chance to set $@ before you see it or something. I am also too tired and lazy ...
9
votes
3answers
320 views
Can method inlining optimization cause race conditions?
As seen in this question:
http://stackoverflow.com/questions/231525/raising-c-events-with-an-extension-method-is-it-bad
I'm thinking of using this extension method to safely raise an event:
public ...
9
votes
5answers
2k views
Race conditions in django
Here is a simple example of a django view with a potential race condition:
# myapp/views.py
from django.contrib.auth.models import User
from my_libs import calculate_points
def add_points(request):
...
8
votes
2answers
256 views
How can barriers be destroyable as soon as pthread_barrier_wait returns?
This question is based on:
When is it safe to destroy a pthread barrier?
and the recent glibc bug report:
http://sourceware.org/bugzilla/show_bug.cgi?id=12674
I'm not sure about the semaphores ...
8
votes
2answers
441 views
Handling race condition in model.save()
How should one handle a possible race condition in a model's save() method?
For example, the following example implements a model with an ordered list of related items. When creating a new Item the ...
8
votes
5answers
1k views
Ajax concurrency
I have a web application where there is a timer that is constantly counting down. Meanwhile, the client frequently checks with the server to see if more time has been added to the timer. The code ...
8
votes
10answers
694 views
Does one assembler instruction always execute atomically?
Today I came across this question:
you have a code
static int counter = 0;
void worker() {
for (int i = 1; i <= 10; i++)
counter++;
}
If worker would be called from two different ...
7
votes
1answer
341 views
RaceOnRCWCleanup when closing WPF apps
For the past few years, I've been using WPF in a mixed-mode app to display various bits & pieces of UI. WPF is used by a C# assembly to generate the UI - it references a C++/CLI-built assembly ...
7
votes
3answers
425 views
Word Tearing on x86
Under what circumstances is it unsafe to have two different threads simultaneously writing to adjacent elements of the same array on x86? I understand that on some DS9K-like architectures with insane ...
6
votes
5answers
234 views
Semaphores and locks in MATLAB
I am working on a MATLAB project where I would like to have two instances of MATLAB running in parallel and sharing data. I will call these instances MAT_1 and MAT_2. More specifically, the ...
6
votes
3answers
1k views
javascript - event driven and concurrency issues?
Greetings,
I've been studying javascript, nodejs. And I don't understand how the concurrency issues are avoided in javascript.
Lets say I'm working on a object
var bigObject = new BigObject();
...
6
votes
4answers
738 views
Race condition and using Google Analytics Asynchronous (_gaq) synchronously
I have a website which is using Google Analytics newer asynchronous tracking method (_gaq). The problem I've run into is that I want to institute some specific link tracking and am worried that I will ...
6
votes
2answers
164 views
Race condition (?) when using Swing
I've moved on from trying to use OpenGL through Penumbra to trying to draw directly on a JPanel using its Graphics context.
This would be great, except I'm running into some trouble⦠I compile my ...
6
votes
3answers
1k views
Atomic increment of a counter in django
I'm trying to atomically increment a simple counter in Django. My code looks like this:
from models import Counter
from django.db import transaction
@transaction.commit_on_success
def ...
6
votes
7answers
4k views
Avoiding a javascript race condition
Here's the scenario:
My users are presented a grid, basically, a stripped down version of a spreadsheet. There are textboxes in each row in the grid. When they change a value in a textbox, I'm ...
5
votes
2answers
127 views
Signal handler accessing queue data structure (race condition?)
I'm currently writing a small shell in C++.
Jobs and the PIDs associated with them are stored within a queue of job pointers (job *). When a new job is run, information about it is added to the ...
5
votes
1answer
161 views
Why did wrapping my JavaScript library in an anonymous function fix my race condition?
Question: Why did wrapping my JavaScript library in an anonymous function fix my race condition?
Note: I am also interested in commentary on good solutions for synchronously and asynchronously ...
5
votes
1answer
168 views
Semaphore without destruction/unmapping race condition
Note: I have heavily edited this question for clarity after making a mess of it brainstorming in public. However the actual algorithms described, and the question about whether they're sufficient to ...
5
votes
2answers
330 views
How do I do Ruby on Rails concurrency testing?
What is the best way to do concurrency testing with ruby on rails 3? I have many race conditions on my site and currently testing them is a inexact science that is very time consuming.
Thanks in ...
5
votes
4answers
293 views
Race condition in C signal handlers puzzle
I need to know how to avoid a race condition when handling signals in C. Each time my program receives a signal, I want it to alter a (global) linked list. It is vitally important that I not miss a ...
5
votes
2answers
124 views
Is there a possible race condition in this UPDATE statement?
I'm writing a synchronizer software which will take all changes in one DB and synchronize them to another DB. To this end I've added in my table T two columns:
alter table T add LastUpdate ...
5
votes
4answers
286 views
Handling Race Conditions in C#
I'm writing an application with a layered communications interace. This was done to abstract the communications from the user-interface part of the application and also to make it more ...
5
votes
3answers
363 views
What about race condition in multithreaded reading?
According to an article on IBM.com, "a race condition is a situation in which two or more threads or processes are reading or writing some shared data, and the final result depends on the timing of ...
5
votes
1answer
664 views
Simulating race conditions in RSpec unit tests
We have an asynchronous task that performs a potentially long-running calculation for an object. The result is then cached on the object. To prevent multiple tasks from repeating the same work, we ...
5
votes
3answers
4k views
How to get last inserted row ID from wordpress database?
My wordpress plugin has a table with a AUTO_INCREMENT primary key field called ID. When a new row is inserted into the table, I'd like to get the ID value of the insertion.
The feature is to using ...
5
votes
7answers
468 views
In a multithreaded (Java or .Net) program, can I assume that copying a variable is atomic?
I was worrying about race conditions in an application I'm designing, when I was wondering about this question.
Let's say I have a large array or collection of some sort that is managed by one ...
4
votes
2answers
104 views
Current state of drd and helgrind support for std::thread
As I transition my code to C++11, I would very much like to convert my pthread code to std::thread. However, I seem to be getting false race conditions on very simple programs in drd and in helgrind.
...
4
votes
3answers
120 views
How to deal with race conditions in multi-threading?
Here's an example:
if (control.InvokeRequired)
{
control.BeginInvoke(action, control);
}
else
{
action(control);
}
What if between the condition and the BeginInvoke call the control is ...
4
votes
2answers
128 views
How do I know when it's safe to call Dispose?
I have a search application that takes some time (10 to 15 seconds) to return results for some requests. It's not uncommon to have multiple concurrent requests for the same information. As it stands, ...
4
votes
1answer
92 views
Code not executed when Android Dialog box answered too quickly (race condition)
In my android app, I have a dialog box which has code like this:
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
...
4
votes
2answers
858 views
MATLAB GUIDE gui listbox intermittently disappears with seemingly obsolete error
I am building a straightforward MATLAB gui using GUIDE. I have a listbox of items. Most of the time, it works as expected, but sometimes (usually after I edit the figure with GUIDE) populating the ...
4
votes
6answers
330 views
Help needed in Multithreading to determing which thread stops first
Write a class named RaceHorse that extends Thread. Each RaceHorse has a name and run() method that displays the name 5000 times. Write a Java application that instantiates 2 RaceHorse objects. The ...
4
votes
4answers
1k views
Multi-Threading on different instances of same object in Java
I've learned that every class byte code is been loaded to the memory once for each class loader, thus when a thread is executing the byte code of some method, and another thread comes along?
1 thread ...
4
votes
4answers
1k views
Is it possible to store pointers in shared memory without using offsets?
When using shared memory, each process may mmap the shared region into a different area of its respective address space. This means that when storing pointers within the shared region, you need to ...
4
votes
2answers
3k views
How do I obtain, and synchronize, a complete list of all X11 windows?
I want to monitor all the open windows under X11. Currently, I'm doing this as follows:
Initially walking the whole tree by recursively calling XQueryTree from the root window
Listening for ...
4
votes
5answers
857 views
Can awk skip files which do not exist, race-free?
Is there a way to make awk (gawk) ignore or skip missing files? That is, files passed on the command line that no longer exist in the file system (e.g. rapidly appearing/disappearing files under ...
3
votes
2answers
71 views
C# race condition when using the observer pattern with a GUI
I'm new to C# & threading and I recently started working on a utility that's using multiple threads. I have some event handling logic being done by one thread, and then a GUI on a separate thread ...
3
votes
5answers
136 views
Java avoid race condition WITHOUT synchronized/lock
In order to avoid race condition, we can synchronize the write and access methods on the shared variables, to lock these variables to other threads.
My question is if there are other (better) ways to ...
3
votes
4answers
129 views
Detect when a fifo is opened from a program
I have a situation where I need to check if the other side of a fifo has opened it, however I can't use a open because otherwise the program will start doing stuff.
Why I have to do this: I have a ...
3
votes
2answers
54 views
What is the order in which a POSIX system clears the file locks that were not unlocked cleanly?
The POSIX specification for fcntl() states:
All locks associated with a file for a given process shall be removed when a file descriptor for that file is closed by that process or the process ...
3
votes
2answers
132 views
Are there any concurrency debugging tools for C#.NET in VS2010
On the project I am working on at the moment we have an unknown number of flickering tests which fail at varying rates (anywhere from every-other run to once every 5000 runs) which has led us to ...
3
votes
2answers
42 views
Strategy for mitigating race conditions when updating cookies?
So the situation is that on a given page there are many HTTP requests and each of these need to update a single shared cookie. There is no possibility to control how many requests are made per page, ...