Tagged Questions

Don't use this tag - either use race-condition, or (if you're talking about gaming) collision-detection

learn more… | top users | synonyms

6
votes
8answers
466 views

Ways to Find a Race Condition

I have a bit of code with a race condition in it... I know that it is a race condition because it does not happen consistently, and it seems to happen more often on dual core machines. It never ...
4
votes
3answers
402 views

Difference between racearound condition and deadlock

What is the difference between a dead lock and a race around condition in programming terms?
3
votes
2answers
182 views

Managing AJAX control loading sequence on a page

I think I am experiencing race conditions with an AJAX web application. I am using JQuery 1.4.4 to handle the AJAX requests. I have a menu control/class that the user clicks to display controls for ...
3
votes
1answer
426 views

3d race game collision detection

Can somebody explain how the collision detection works for race tracks in games like need for speed or wipeout?
2
votes
2answers
184 views

avoid race in OpenMP (in a parallel for loop)

I am writing an OpenMP program in C. I have this shared array "data" which is being updated by all threads. i want to ensure that every thread has completed the reading part and stored the value in ...
1
vote
1answer
92 views

Trying to implement race condition using pthread

I am trying to set-up race condition to see how it happens to get an understanding. I wrote the code below. This compiles without any issue but when I run it, it does not print the count at every run. ...
1
vote
1answer
172 views

How do I fix VK_ issue and NullPointerException?

import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.GraphicsEnvironment; import java.awt.Rectangle; import java.awt.event.KeyEvent; import ...
0
votes
4answers
100 views

Programming in C, integer distribution error, cannot find mistake

I'm writing a code for a simple text based game, and when I purchase a car, the HP and TOPSPEED are registering for integers different than specified. I've looked over the code myself, perhaps I'm not ...
0
votes
1answer
110 views

ExtJS 4: How to prevent race conditions when reloading stores?

When I load my TreeStore a second time before the first load is finished, it fails. TreeStore load() doesn't seem to be reentrant. So that is what I am doing to make the second load() wait: ...
0
votes
1answer
89 views

What techniques can be used for horseracing forecasting?

I need to design "A horse racing simulation" software. For that i need to analyze past records of races to determine a formula that can describe how the dependent variable Y respond to the changes in ...
0
votes
1answer
133 views

TCP port race condition?

I want to start my program multiple times and each instance tries to connect with TCP to the same server port. What I intend is to let the first one connect and the other remaining clients should try ...
0
votes
2answers
67 views

race condition algorithm

As an alternative implementation, it is proposed to use the following code fragment which has a shared int variable turn, initialised to 0. The two threads have the local int constant mine set to 0 ...
0
votes
2answers
240 views

postgresql company id based sequence

I have a database with companies and their products, I want for each company to have a separate product id sequence. I know that postgresql can't do this, the only way is to have a separate sequence ...
0
votes
0answers
78 views

Non-blocking socket not observing OP_READ set - possible race condition?

So I've got a multithreaded server app using non-blocking sockets listening for connections. When a client connects, the client immediately sends a request and awaits a response. The server creates a ...
0
votes
6answers
732 views

Race Condition because of multiple AJAX reqeusts

my problem is the following. I wrote a class AJAXEngine, which creates in the constructor a new XMLHttpRequest object. The class contains a method called responseAnalyser, which is called when the ...
0
votes
3answers
262 views

Javascript and DOM event interaction and possible race conditions

Scenario: Preloading images Perform an ajax query Show loading screen Retrieve results from ajax query Insert images into the dom Wait for images to finish loading Hide loading screen I was ...