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, rpointel, vstinner
Date 2011-09-06.20:58:03
SpamBayes Score 3.1728541e-06
Marked as misclassified No
Message-id <1315342684.39.0.195055177488.issue12905@psf.upfronthosting.co.za>
In-reply-to
Content
> I tried the following script on OpenBSD 5 with Python 3.3: ...

Bad news: the script doesn't hang if Python is build without threads.

Short C program to test interrupted syscalls:
-------------                                                                                                    
#include <signal.h>
#include <stdio.h>
#include <pthread.h>

void
handler(int signum)
{
printf("HANDLER!\n");
}

void _noop()
{
}

int main()
{
int s = SIGALRM;
char buffer[1024];
int n;
static int dummy = 0;

pthread_t thread1;
pthread_create(&thread1, NULL, (void *) _noop, &dummy);
pthread_join(thread1, NULL);


signal(s, handler);
siginterrupt(s, 1);
alarm(1);
printf("read...\n");
n = read(0, buffer, 1024);
printf("read->%i\n", n);
return 0;
}
-------------

read() is interrupted after 1 second, it works.
History
Date User Action Args
2011-09-06 20:58:04vstinnersetrecipients: + vstinner, neologix, rpointel
2011-09-06 20:58:04vstinnersetmessageid: <1315342684.39.0.195055177488.issue12905@psf.upfronthosting.co.za>
2011-09-06 20:58:03vstinnerlinkissue12905 messages
2011-09-06 20:58:03vstinnercreate