Hi again,
I have another question regarding thread safe programming in Pike.
If you have a global object m and that several threads can write to m->foo (where foo is a public variable of this object), then do you need to protect access to m->foo or the entire m object ?
Is it the same if it is a mapping ?