3
votes
5answers
530 views
mysql insert race condition
How do you stop race conditions in MySQL? the problem at hand is caused by a simple algorithm:
select a row from table
if it doesn't exist, insert it
and then either you get a …
4
votes
10answers
304 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 f …
1
vote
1answer
30 views
FileSystemWatcher Priority
I am looking to monitor a folder for create events using the FileSystemWatcher in c#. The problem is that another 3rd party process is also watching that folder, I need (if possibl …
0
votes
1answer
34 views
Race condition / TextWriterTraceListener
Hi
I have something wich looks to me like race condition while logging to file from
multiple thread.
1) I've got a custom logger class (ConfigurableTraceLogger) that is shared by …
0
votes
0answers
11 views
Serializing DB/2 Triggers
We have a requirement to process transactions as an ordered sequence. Transactions are initiated
on system 'A' and written to a DB/2 table. A DB/2 trigger then forwards
the transac …
3
votes
3answers
118 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 archi …
1
vote
5answers
81 views
Atomic Instructions and Variable Update visibility
On most common platforms (the most important being x86; I understand that some platforms have extremely difficult memory models that provide almost no guarantees useful for multith …
2
votes
4answers
88 views
[APUE]Does parent and child share the same file offset after fork?
In APUE section 8.3 fork function, about file sharing between parent and child processes,
It said: It is important that the parent and the child share the same file offset.
And …
0
votes
4answers
168 views
How will a lock respond to a race condition?
How long will a thread wait for a race condition in the following scenario?
A file is added to a collection:
lock(mylock)
{
// add to collection
}
It is then removed fr …
0
votes
1answer
82 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_succes …
7
votes
4answers
129 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 prob …
0
votes
4answers
537 views
ASP.NET/Static class Race Condition?
I have an ASP.NET application with a lot of dynamic content. The content is the same for all users belonging to a particular client. To reduce the number of database hits require …
0
votes
2answers
147 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 f …
0
votes
1answer
151 views
jQuery remote validation race condition
I'm having a problem with the jQuery validate plugin and the remote validation rule, used in combination with the jQuery form plugin.
So I use the jQuery form plugin to intercept …
0
votes
6answers
99 views
Synchronize shell script execution
A modified version of a shell script converts an audio file from FLAC to MP3 format. The computer has a quad-core CPU. The script is run using:
./flac2mp3.sh $(find flac -type f)
…
