This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients neologix, vstinner
Date 2013-11-26.00:14:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385424870.78.0.552877201137.issue19787@psf.upfronthosting.co.za>
In-reply-to
Content
Extract of Modules/_tracemalloc.c:

static void
set_reentrant(int reentrant)
{
    assert(reentrant == 0 || reentrant == 1);
    if (reentrant) {
        assert(PyThread_get_key_value(tracemalloc_reentrant_key) == NULL);
        PyThread_set_key_value(tracemalloc_reentrant_key,
                               REENTRANT);
    }
    else {
        /* FIXME: PyThread_set_key_value() cannot be used to set the flag
           to zero, because it does nothing if the variable has already
           a value set. */
        PyThread_delete_key_value(tracemalloc_reentrant_key);
    }
}
History
Date User Action Args
2013-11-26 00:14:30vstinnersetrecipients: + vstinner, neologix
2013-11-26 00:14:30vstinnersetmessageid: <1385424870.78.0.552877201137.issue19787@psf.upfronthosting.co.za>
2013-11-26 00:14:30vstinnerlinkissue19787 messages
2013-11-26 00:14:30vstinnercreate