-5
votes
2answers
61 views
how to kill deadlock in operatingsystem by c++ ?
the question is how to kill the deadlock using the c++
i want a c++ porgram to help to kill deadlock in the opertingsystem
0
votes
3answers
46 views
Remove deadlock without killing session
Is there any workaround to remove deadlock without killing the session?
1
vote
2answers
48 views
Objective-C/Cocoa threads and messaging conundrum
Hello,
I have a problem that has been plaguing me for awhile now, I have come up with a solution which I will detail below, and although it seems to be working well I'm not super enthusiastic about it …
1
vote
2answers
39 views
How to handle this Multithread situation and don’t lock?
Hello,
I have this situation: a Form with a System.Timer in it (with AutoReset = False). The form has its main thread and the timer its own thread too (nothing new here).
When the user press a …
1
vote
2answers
39 views
Conversion Deadlock problem, please help!
Hi all, really hope you can help.
We've got a problem with conversion deadlocking going on within one environment (the same proc + trigger works in at least four other environments).
The stored …
1
vote
6answers
85 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_locked();
…
0
votes
5answers
51 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 parent, you get a real …
1
vote
1answer
31 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: declarative transactions) …
0
votes
0answers
19 views
No managed thread in dump created by orphaning IIS application pool of 64 bit ASP.NET
I need to find reason for Event ID 2262, Deadlock Detected of our ASP.NET application (64bit). It happens 1-3 times per day on our development server.
I created mini dump with full memory by …
1
vote
1answer
33 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)
Service B- Updates …
0
votes
3answers
60 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
62 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.
Inside the …
4
votes
1answer
80 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 don't understand why …
0
votes
2answers
67 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 as follows (sorry for …
0
votes
1answer
56 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 (ReadCommitted isolation)
…
