This is the mail archive of the libc-help@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: pthread_mutex_destroy returns EBUSY, but the mutex isn't locked


On Wed, Jun 4, 2008 at 8:48 AM, Adrian Ludwin <adrian.ludwin@gmail.com> wrote:
>      Mutex 0x920df0: lock=0, count=0, owner=0, nusers=2, kind=2

The mutex is unlocked, there are 2 waiters on the futex, but they
haven't had time to be woken yet, therefore you can't destroy the
mutex, and calls to pthread_mutex_destroy() return EBUSY.

You shouldn't ignore the error. You should wait a while and try
destroying it again.

Cheers,
Carlos.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]