Re: question on limits.h

2005-05-29 Thread Corinna Vinschen
On May 27 14:15, Eric Blake wrote: > My reading of POSIX says that LLONG_MIN and friends must always be defined, > and > not just when the version of C is new enough: > http://www.opengroup.org/onlinepubs/009695399/basedefs/limits.h.html > At any rate, I was surprised when I noticed that coreuti

Probably unnecessary InterlockedCompareExchangePointer in List_remove in thread.h

2005-05-29 Thread Vaclav Haisman
I think that the call to InterlockedCompareExchangePointer() can and should be replaced by ordinary if and assignment. The synchronization it provides doesn't seem to be necessary. VH. 2005-05-29 Vaclav Haisman <[EMAIL PROTECTED]> * thread.h (List_remove): Make node parameter const.