Tagged Questions
The livelock tag has no wiki summary.
8
votes
4answers
5k views
Good example of livelock?
I understand what livelock is but I was wondering if anyone had a good code-based example of it? And by code-based, I do NOT mean "two people trying to get past each other in a corridor". If I read ...
3
votes
1answer
736 views
How to let NHibernate retry deadlocked transactions when using session per request?
What pattern/architecture do you use in a 3-tiered application using NHibernate that needs to support retries on transaction failures, when you are using the Session-Per-Request pattern? (as ISession ...
2
votes
2answers
531 views
difference between deadlock and livelock
can somebody please explain what is the difference between deadlock and livelock, with small examples (examples I mean code), thanks in advance
1
vote
0answers
106 views
Is there a safe way to call gettimeofday() from a Xenomai real time thread?
I'm running a Xenomai real time thread that sometimes needs to call gettimeofday(), in order to find out what the current time is according to ptpd.
However, doing that appears to be unsafe: in ...
0
votes
2answers
329 views
Debugging livelock in Django/Postgresql
I run a moderately popular web app on Django with Apache2, mod_python, and PostgreSQL 8.3 with the postgresql_psycopg2 database backend. I'm experiencing occasional livelock, identifiable when an ...
0
votes
5answers
2k 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 ...