Hi Jonathan,
I tried applying the latest changes from svn to mutex, but it stills fails
to build.
On Sat, 29 Oct 2011, Jonathan Wakely wrote:
What does the definition of _pthread_fastlock on line 34 of
/usr/include/bits/pthreadtypes.h look like?
/* Fast locks (not abstract because mutexes and conditions aren't
abstract). */
struct _pthread_fastlock
{
__atomic_lock_t __spinlock; /* Used by compare_and_swap emulation.
Also,
adaptive SMP lock stores spin count
here. */
long int __status; /* "Free" or "taken" or head of waiting
list */
};
Dimitris