|
From: Jeremy F. <je...@go...> - 2004-03-12 08:14:49
|
On Thu, 2004-03-11 at 23:39, Aleksander Salwa wrote: > Is there any reason to avoid using user's sem_t ? If not, then I will > try to implement much simplier remapping in constant time - without > linear search or AVLs. The disadvantage of using pointers embedded in the user datastructures is that the client code can trash them and cause things to go strange. But since we're talking about code on the client side anyway, then this doesn't matter so much. I would definitely go with the simple approach for now. J |