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 pitrou
Recipients hroncok, pitrou
Date 2018-04-22.09:59:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1524391175.16.0.682650639539.issue33329@psf.upfronthosting.co.za>
In-reply-to
Content
Perhaps you can compile and run this C program, before and after the system changes, and post the output:


#include <errno.h>
#include <signal.h>
#include <stdio.h>

int main(int argc, char** argv)
{
    sigset_t set;
    int i, ret;

    printf("NSIG = %d\n", NSIG);
    for (i = 1; i < NSIG; i++) {
        errno = 0;
        ret = sigaddset(&set, i);
        printf("sigaddset(%d) returned %d, errno =%d\n", i, ret, errno);
    }
    return 0;
}


(on Ubuntu 16.04, I get NSIG = 65, and all signal numbers work fine)
History
Date User Action Args
2018-04-22 09:59:35pitrousetrecipients: + pitrou, hroncok
2018-04-22 09:59:35pitrousetmessageid: <1524391175.16.0.682650639539.issue33329@psf.upfronthosting.co.za>
2018-04-22 09:59:35pitroulinkissue33329 messages
2018-04-22 09:59:35pitroucreate