22
votes
7answers
1k views
Locking Executing Files: Windows does, Linux doesn’t. Why?
I noticed when a file is executed on Windows (.exe or .dll), it is locked and cannot be deleted, moved or modified.
Linux, on the other hand, does not lock executing files and you can delete, move, …
18
votes
6answers
1k views
Why is lock(this) {…} bad?
The MSDN documentation says that
public class SomeObject
{
public void SomeOperation()
{
lock(this)
{
//Access instance variables
}
}
}
is "is a problem if the instance can …
18
votes
8answers
1k views
Are locks unnecessary in multi-threaded Python code because of the GIL?
If you are relying on an implementation of Python that has a Global Interpreter Lock (i.e. CPython) and writing multithreaded code, do you really need locks at all?
If the GIL doesn't allow multiple …
16
votes
8answers
1k views
Pure-Ruby concurrent Hash
What's the best way to implement a Hash that can be modified across multiple threads, but with the smallest number of locks. For the purposes of this question, you can assume that the Hash will be …
14
votes
5answers
2k views
What are the differences between various threading synchronization options in C#?
Can someone explain the difference between:
lock (someobject) {}
Using Mutex
Using Semaphore
Using Monitor
Using Other .Net synchronization classes
I just can't figure it out. It seems to me the …
12
votes
6answers
4k views
Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)
POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won't deadlock. Of course it also needs to unlock it twice, otherwise no other thread can obtain the …
11
votes
9answers
361 views
Why avoid pessimistic locking in a version control system?
Based on a few posts I've read concerning version control, it seems people think pessimistic locking in a version control system is a bad thing. Why? I understand that it prevents one developer from …
10
votes
7answers
1k views
Why the Global Interpreter Lock?
What is exactly the function of Python's Global Interpreter Lock?
Do other languages that are compiled to bytecode employ a similar mechanism?
10
votes
4answers
2k views
Is a bool read/write atomic in C#
Is accessing a bool field atomic in C#? In particular, do I need to put a lock around:
class Foo
{
private bool _bar;
//... in some function on any thread (or many threads)
_bar = true;
…
9
votes
5answers
252 views
Do I need to lock or mark as volatile when accessing a simple boolean flag in C#?
Lets just say you have a simple operation that runs on a background thread. You want to provide a way to cancel this operation so you create a boolean flag that you set to true from the click event …
9
votes
5answers
847 views
What is the best way to open a file for exclusive access in Python?
What is the most elegant way to solve this:
open a file for reading, but only if it is not already opened for writing
open a file for writing, but only if it is not already opened for reading or …
9
votes
4answers
3k views
Optimistic vs. Pessimistic locking
I understand the differences between optimistic and pessimistic locking*. Now could someone explain to me when I would use either one in general?
And does the answer to this question change …
8
votes
3answers
136 views
Why are locks performed on separate objects? [closed]
Possible Duplicate:
Difference between lock(locker) and lock(variable_which_I_am_using)
In all of the "thread-safe" code examples i've seen, they lock on a separate dummy object. Why cant …
8
votes
3answers
726 views
Re-entrant locks in C#
Will the following code result in a deadlock using C# on .NET?
class MyClass
{
private object lockObj = new object();
public void Foo()
{
lock(lockObj){
Bar();
…
8
votes
3answers
647 views
How do I copy a file or folder that is locked under windows programmatically?
What are the API calls to copy a file that is currently locked. I'm hoping to be able to use .Net, but Win32 calls would be fine as well.
Please feel free to chime in about the same functionality …
