1
vote
6answers
76 views
Ensuring certain private functions can only be called from a locked state
Say I have a class A:
class A {
public:
A();
void fetch_data() { return 1; }
void write_x_data() {
// lock this instance of A
private_function1_which_assumes_l …
0
votes
5answers
47 views
Win32 CreateWindow() call hangs in child thread?
I'm working on a portability layer for OpenGL (abstracts the glX and wgl stuff for Linux and Windows)... Anyhow, it has a method for creating a Window... If you don't pass in a par …
0
votes
1answer
21 views
How to restart transactions on deadlock/lock-timeout in Spring?
Hi,
What is the best practice on implementing a transaction restart upon deadlock or lock timeout exceptions when using Spring (specifically the Spring recommended approach: decla …
1
vote
1answer
30 views
xml Column update and Locking in Sql Server
Hi,
I have a few windwos services. They get xml column from Sql server manipulate and update it.
Service A- Gets XML
Service B- Gets XML
Service A- Updates XML (it will be lost)
…
0
votes
3answers
56 views
How can I get dead lock in this situation?
In my client application I have a method like this (in practice it's more complex, but I've left the main part):
public void btnUpdate_Click(...)
{
...
dataAdapter.Update(...) …
0
votes
2answers
60 views
resolving Deadlock
I have a Store Procedure being called to fill one table whenever we receive incoming files.
Sometimes we receive more than one file and the procedure will be called simultaneously. …
3
votes
1answer
75 views
Joining a boost::thread instance in the destructor
I'm seeing an issue where a call to boost's thread->join in a destructor leads to a deadlock. I don't understand why, and I'm not too keen on keeping code that just works (and I do …
0
votes
1answer
52 views
Help with SQL Server locking
Hi,
I have a locking problem between a "select" and an "insert/update":
Select TableB.* from TableA
Join TableB on TableA.TableBId = TableB.TableBId
Start Transaction (ReadCommit …
0
votes
2answers
63 views
Getting deadlocks in sqlserver
I am getting deadlocks occasionally in sql server. I created a function for locking non database operations (credit card processing) so duplicates cannot happen. My functions are a …
0
votes
5answers
86 views
Does this stack dump indicate that I have a deadlock ?
I have a REST service built using Jersey.
When I performed a "curl" against my REST API, the command hangs.
I ran jstack & this is a summarized output of two threads in BLOCK …
3
votes
6answers
137 views
Question About Deadlock Situation in Java
I'm learning about deadlocks in Java, and there's this sample code from Sun's official tutorial:
Alphonse and Gaston are friends, and
great believers in courtesy. A strict
…
3
votes
2answers
83 views
Find out holder of a Java (implicit) synchronize lock [closed]
Possible Duplicate:
Programmatically determine which Java thread holds a lock
Is there a standard way, preferably simple, in Java to find out who is causing blocking when …
0
votes
3answers
117 views
duplicacy problems while creating a sudoku puzzle
I am trying to create my own normal 9x9 sudoku puzzle.
I divided the problem into two parts -
creating a fully filled sudoku, and
removing unnecessary numbers from
the grid
R …
0
votes
0answers
48 views
IPhone SendDelegateMessage failed to return after waiting 10 Secs
Hi,
I keep getting the following message from my iPhone 3.0 when trying to convert a large NSData object into base64Encoding for http transmission :
void SendDelegateMessage(NSInv …
1
vote
6answers
228 views
Why is lockless concurrency such a big deal (in Clojure)?
I'm told that Clojure has lockless concurrency and that this is Important.
I've used a number of languages but didn't realize they were performing locks behind the scenes.
Why is …
