public inbox for pthreads-win32@sourceware.org
 help / color / mirror / Atom feed
From: Stephane Clairet <Stephane.Clairet@4d.com>
To: "pthreads-win32@sourceware.org" <pthreads-win32@sourceware.org>
Subject: pthread_key_delete issue
Date: Tue, 23 Oct 2012 13:34:00 -0000	[thread overview]
Message-ID: <73C0C0720B9162459C8AF58ED19AD5B65D741FC96F@4d-xn1-exch> (raw)

Hi,
after migrating from 2.8.0 version to 2.9.1 version, I have an issue with pthread_key_delete function.
Sometimes, the application on which I work freezes after calling pthread_key_delete.

In fact, the app is stopped on this line: ptw32_mcs_lock_release (&keyLock) (line 106 into pthread_key_delete.c file)
It seems to be reproduced only when the specific data key concerns several threads.
The explanation is maybe inside the pthread_key_delete implementation:

int pthread_key_delete (pthread_key_t key)
{
    ptw32_mcs_lock_acquire (&(key->keyLock), &keyLock);
    ...
    while ((assoc = (ThreadKeyAssoc *) key->threads) != NULL)
    {
        ...
        ptw32_mcs_lock_release (&keyLock);
    }
}

The freeze always occurs when the program try to release the key lock a second time. I don't know if it's supposed to be supported.
Release the key lock outside the while loop seems to fix the issue.

Thanks for help.
Regards.

Stéphane




Stephane Clairet
Architecte Logiciel

4D SAS
60, rue d'Alsace
92110 Clichy
France

Standard : +33 1 40 87 92 00
Email :    Stephane.Clairet@4d.com
Web :      www.4D.com


             reply	other threads:[~2012-10-23 13:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-23 13:34 Stephane Clairet [this message]
2012-10-23 22:15 ` Ross Johnson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=73C0C0720B9162459C8AF58ED19AD5B65D741FC96F@4d-xn1-exch \
    --to=stephane.clairet@4d.com \
    --cc=pthreads-win32@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).