Tagged Questions

3
votes
1answer
68 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
39 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
49 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
72 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
2answers
79 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 …
3
votes
6answers
134 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 …
0
votes
3answers
112 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
29 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
211 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 …
3
votes
5answers
80 views

Problem with synchronized collections of Java when doing equals() in the reverse order from multiple threads

Example scenario: Create two SynchronizedSets (s1 and s2) Pass them to two threads (T1 and T2) Start the threads T1's run() : while (forever) s1.equals(s2) T2's run() : …
0
votes
4answers
232 views

Is the C# “lock” construct rendered obselete by Interlocked.CompareExchange<T>?

Summary: It seems to me that: wrapping fields representing a logical state into a single immutable consumable object updating the object's authoritative reference with a call to …
0
votes
1answer
39 views

How can I catch Sybase bcp errors reliably?

We're using named pipes with Sybase bcp so that we can compress output on-the-fly. This is a paraphrase of the error handling idiom, some error checking in the non-bcp parts of th …
40
votes
26answers
6k views

Diagnosing Deadlocks in SQL Server 2005

We're seeing some pernicious, but rare, deadlock conditions in the Stack Overflow SQL Server 2005 database. I attached the profiler, set up a trace profile using this excellent ar …
0
votes
4answers
68 views

Shared memory access without semaphores

Hi All, using shared memory apis in linux, If I have one write(by A process) and only one read( by B process) do I still need semaphore.?. Is there a example to show, using sharing …
0
votes
2answers
62 views

DeadLock Issues in Process.StandardOutput.ReadToEnd();

I read that this portion of code can cause deadlock: Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardOutput = true; p.StartInfo.Fi …

1 2 3 4 5 9 next
15 30 50 per page