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 loewis
Recipients christian.heimes, loewis, python-dev, serhiy.storchaka
Date 2014-08-15.15:00:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1408114846.53.0.587347737647.issue22193@psf.upfronthosting.co.za>
In-reply-to
Content
Christian: I don't see why 24 bytes overhead sounds strange. GC_Head is

typedef union _gc_head {
    struct {
        union _gc_head *gc_next;
        union _gc_head *gc_prev;
        Py_ssize_t gc_refs;
    } gc;
    double dummy;  /* force worst-case alignment */
} PyGC_Head;

which happens to be 3*8=24 bytes on a 64-bit system.
History
Date User Action Args
2014-08-15 15:00:46loewissetrecipients: + loewis, christian.heimes, python-dev, serhiy.storchaka
2014-08-15 15:00:46loewissetmessageid: <1408114846.53.0.587347737647.issue22193@psf.upfronthosting.co.za>
2014-08-15 15:00:46loewislinkissue22193 messages
2014-08-15 15:00:46loewiscreate