A race condition is when multiple threads/processes/clients all use a resource, without proper use of locks.
0
votes
1answer
4 views
About race conditions when using “AUTO_INCREMENT FROM information_schema.TABLES” inside a trigger
Details
Using MySQL (InnoDB)
Referring to the following post: Can you access the auto increment value in MySQL within one statement?
Background
I need to use the generated ID (PK) in an BEFORE ...
1
vote
1answer
13 views
accessing shared variable in wait_event_timeout linux interface
wait_event_timeout can be used to put a thread to sleep for specified time or until some condition becomes true.
I am facing a situation where this condition is a shared variable.
ret = ...
0
votes
1answer
23 views
Under what circumstances can race conditions arise in Spring Web Applications?
AFAIK, race conditions arise when separate threads depend on a shared state and operations on this shared state are not mutually exclusive. What are the circumstances in which such scenarios arise in ...
-2
votes
0answers
31 views
A* algorithm implemented in CUDA - can't find path, possible race conditions - any ideas on how to fix it/improve it? [closed]
So, I have to implement a A* pathfinding in CUDA. I've implemented a CPU version, ran some tests, worked like a charm. But when I tried to port it to CUDA, it didn't work as intended. Sometimes, it ...
0
votes
1answer
29 views
How to avoid Race Conditions when a restful architecture doesn't make sense
I'm making a website that I don't think makes sense to implement with a restful architecture (at least not the portion relevant to this problem), but it's causing some problems with race conditions ...
0
votes
0answers
14 views
Race On RCW Cleanup was detected - how to avoid such condition? SQL Server
I am experiencing an occasional exception in my multithreaded program. The exception is: RaceOnRCWCleanup was detected. "An attempt has been made to free an RCW that is in use. The RCW is in use ...
1
vote
1answer
58 views
does read / write atomicity hold on multi-computer memory?
I'm working in a multi-computer environment where 2 computers will access the same memory over a 32bit PCI bus.
The first computer will only write to the 32bit int.
*int_pointer = number;
The second ...
3
votes
2answers
35 views
Several threads writing the same data on a buffer: are there consistent arguments stating that it is dangerous?
Imagine a situation in which several threads can write on a certain buffer (no restrictions on its size) and all of these constraints apply:
Before all the threads start, the buffer is initialized ...
0
votes
0answers
17 views
Race condition setting up Spring annotation proxies
I'm running Spring 3.2.2 and I'm seeing a race condition during my application startup where some of my beans are being created faster than the @Transactional and @Cacheable annotation advisors. Here ...
1
vote
1answer
34 views
JPA: manually increment, avoid race condition (MySQL)
I think I have a rather simple task of manually incrementing ID when adding a new record to the table, based on some conditions.
Let's say I have tables Book and Chapter. Chapter has ...
0
votes
0answers
35 views
What is “Data Race Condition” in plain English and illustrated through a simple C program? [duplicate]
I searched all over the internet about it (Wikipedia included),but all tell the same theoretical thing in varying degree of complexity in their choice of technical jargon,that race conditions arise ...
0
votes
1answer
52 views
Race conditions despite atomicAdd functions (CUDA)?
I have a problem that is parallel on two levels: I have a ton of sets of (x0, x1, y0, y1) coordinate pairs, which are turned into variables vdx, vdy, vyy and for each of these sets I'm trying to ...
0
votes
0answers
20 views
Javascript race condition on iOS
I want to have a html page with a button. The button should do two things:
launch iOS app (using registered url scheme)
close current tab.
Currently, I came up with following solution:
1) Open ...
-2
votes
3answers
105 views
Creating/Using FileStream Thread Safe
In my Application when I write text files (logs, traces, etc), I use TFileStream class.
There are cases that I write the data in multithreaded environment, those are the steps:
1- Write Cache Data
...
0
votes
4answers
39 views
I want to test if lazy initialization is thread-safe
I want to test if lazy initialization is thread-safe, so my code is below:
package LazyInit;
import java.util.Random;
public class UnThreadSafeLazyInit {
private ExpensiveObject instance = ...
0
votes
0answers
27 views
WMI and devcon race?
Our policies require us to enable networking devices for a given remote machine only as needed. These are cellular and POTS modems of various sorts (though right now limited to Ericsson H5321gw and a ...
6
votes
2answers
1k views
Double-checked locking in C++11? [duplicate]
Here is a Java example problem from http://www.ibm.com/developerworks/java/library/j-dcl/index.html
public static Singleton getInstance()
{
if (instance == null) //#4
{
...
0
votes
1answer
44 views
Race condition in ZooKeeper and Python based message queue
I've been evaluating ZooKeeper as a simple message queue and I've written two very simple scripts: mq feeder and mq consumer. The feeder, below, is inly pushing 20 jobs to the queue and then is ...
0
votes
0answers
24 views
MySQL INSERT SELECT WHERE race condition
I'm working on a ticketing system where users escrow a large amount of tickets at once (basically all tickets that are not out of stock) before claiming them. These tickets that shown to the user and ...
0
votes
0answers
24 views
MySQL potential race condition with selects and inserts
I'm having a hard time pinning down an issue I'm having. First, I have a table for an IVR that is essentially a queue of people to call; it looks like this:
...
0
votes
0answers
18 views
Race condition caused by C# (implicit) marshaling?
Context: VS 2012, C# 5.0, "Code-First" MS SQL DB ORM/DAL layer.
I have a test class / run-time control flow (simplified):
public class TestData
{
public decimal? TestValue {get;set;}
...
...
0
votes
0answers
40 views
Node.js hub multiple cpu's race condition
I've built a node.js app which receives incoming requests and forwards these requests to several nodes (virtual machines).
The logic determining where to send each request to is pretty simple, but ...
1
vote
3answers
92 views
How do I fix this race condition?
I have a server accepting clients that has a stop() method that closes the server down, which is causing a java.nio.AsynchronousCloseException that I'd like to resolve. The stop() method is called on ...
4
votes
1answer
65 views
Is there a race condition in the `latch` sample in N3600?
Proposed for inclusion in C++14 (aka C++1y) are some new thread synchronization primitives: latches and barriers. The proposal is
N3600: C++ Latches and Barriers
N3666: C++ Latches and Barriers, ...
0
votes
2answers
79 views
Is there really a race condition in this multi-threaded java code?
I saw a snippet of code in this question which I could not understand (most probably due to the fact am a beginner in this area). The question talks about "an obvious race condition where sometimes ...
0
votes
0answers
24 views
Tracking file descriptor activity on Linux
I'm facing an issue where my epoll descriptor is getting closed from underneath me. It's a huge code base and I've tried to trace the activities on the descriptor in the code, but to no avail. Is ...
0
votes
1answer
17 views
How to avoid race condition between Process termination notification and standard output redirection events?
In a very controlled fashion, I queue jobs in a ProcessJobManager that will process them in up to X concurrent processes at a time.
After starting each process, I add it to a ...
0
votes
2answers
59 views
Fastest way to share data with different threads?
Consider the following scenario with Open MP:
We have a pointer A pointed to a very large buffer in memory, and we have several threads, one thread (lets call it thread #1) keep updating the ...
0
votes
2answers
76 views
Assuring wait() is called before notify() in threading, is it possible?
I was looking at the Threading chapter in Kathy Sierra's book, when I encountered an example of using wait/notify methods :
class ThreadA {
public static void main(String [] args) {
ThreadB b = ...
1
vote
2answers
76 views
Is my function prone to race conditions?
I'm writing a simple blogging engine and I wrote a function to create a post. The function contains this code:
CREATE FUNCTION CreatePost(VARCHAR, TEXT, VARCHAR[])
RETURNS INTEGER AS $$
DECLARE
...
0
votes
0answers
16 views
Understanding race conditions
From wikipedia:
Race conditions arise in software when separate computer processes or threads of execution depend on some shared state.
If I'm understanding this correctly, does this mean that ...
0
votes
1answer
62 views
OpenMP race condition?
I've read that variables in OpenMP are shared by default. Does this mean that in the following code, which is supposed to sum all the numbers from 0 to N-1, there is a race condition?
int sum = 0,i;
...
1
vote
1answer
55 views
Spring hibernate insert race condition
I am currently having a race issue with Spring Hibernate (transaction by annotation on service and daoImpl classes). Here is what I have encountered:
Tables:
Device Type: id (serial), name
Device: ...
-1
votes
1answer
71 views
JavaFx 2 application freezing when running task
I'm new in JavaFX 2 and I'm having some troubles using multithreads in JavaFX. The problem I'm facing is that the application simply freezes and I can't find why. I believe there is a race condition ...
6
votes
1answer
260 views
timing issues with jquery deferred
This question is carefully distilled version of not asynchronous function executed as jQuery Deferred.
We have 2 jsfiddles:
http://jsfiddle.net/XSDVX/1/ - here the progress event is not fired, ...
0
votes
1answer
41 views
Parallel Foreach Race Condition
i have an issue with a parallel foreach closing the connection before it finishes executing. when i had a regular foreach loop runnung it was slow but it would return everything. once i changed to a ...
0
votes
2answers
94 views
How do I solve HTML5 Canvas Race Conditions?
I have discovered some race conditions with drawing an HTML5 canvas programmatically in JavaScript. These occur when trying to modify an image before it is loaded, and I have been able to fix most of ...
0
votes
3answers
76 views
How to guarantee atomic SQL inserts with subqueries?
Given a simplified table structure like this:
CREATE TABLE t1 (
id INT,
num INT,
CONSTRAINT t1_pk
PRIMARY KEY (id),
CONSTRAINT t1_uk
UNIQUE (id, num)
...
0
votes
1answer
37 views
What is considered “best practice” to test semantic race conditions in akka?
Consider the following actor:
class Stateful(worker: ActorRef) extends Actor {
val queue = // immutable queue with details
def receive = {
case NewJob(details) => worker ! details
...
0
votes
6answers
106 views
identifying parallel asynchronous callstacks in javascript
I wish to know if there was a way for me to use a kind of "private realm" or "private memory" to each stack in javascript, to help me clear out racing condition in especially the case of parallel ...
0
votes
0answers
26 views
What is the difference between a data race and a race condition?
I have been reading about data races and race conditions, but it seems that these are used in place of each other.
So what is the real difference?
1
vote
2answers
124 views
pthread broadcast and then wait?
I'm trying to set up several threads to sit in a wait state until they receive a pthread_cond_broadcast().
After completing a job, I want the threads to go back into their wait states.
I also want ...
7
votes
3answers
117 views
Is a file guaranteed to be openable for reading immidiately after ofstream::close() has returned?
I need my code (C++, on linux) to call a second executable, having previously written an output file which is read by the second program. Does the naïve approach,
std::ofstream out("myfile.txt");
// ...
0
votes
0answers
32 views
How to do locking in rails not using database transations
So I have a particular race condition in my code.
I have an Order. The order has many approvers (users that can perform approvals), but only one approval is needed in order to actually Approve an ...
1
vote
0answers
82 views
Android duplicate views in container caused by fragment transaction race condition?
I have a trivial program here. When you hit "+", it adds a new number to a list. The list is represented on the screen as a LinearLayout containing buttons labeled by each number. Each time you press ...
1
vote
1answer
40 views
Is simulating race conditions with gdb/lldb feasible?
I'm wondering if it would be feasible to automatically test for race conditions using a debugger.
For example, imaging you want to test a multi-threaded queue. Amongst others you would want to test ...
3
votes
1answer
96 views
Preventing race condition in parent relation in Rails
I have the following models:
class Lyric < ActiveRecord::Base
belongs_to :user
belongs_to :song
after_create :add_to_song
end
class Song < ActiveRecord::Base
belongs_to :user
...
0
votes
1answer
33 views
hardware state when read and writes on the same variable from separate threads
The scope of my question is STRICTLY limited to the simultaneous read and write of an address in memory and what happens in hardware.
I am not interested in knowing about race conditions and what ...
-1
votes
2answers
79 views
race-condition effects [closed]
I am aware about the risks on race conditions and that values written or read might be corrupted. I am in a situation where I have races on boolean and integers and a couple of classes instance.
...
2
votes
1answer
70 views
CSS animate transition when jQuery .html() completes
What I want to do is to append a container, fill it with content, and then animate it in by removing a class and letting CSS handle it through a transition. I'm able to do all of that except animate ...
