[issue22985] Segfault on time.sleep

2014-12-06 Thread Omer Katz
Omer Katz added the comment: Capturing the signal provides the following traceback: File "mt_example.py", line 10, in p1 = ThreadPool() File "/home/omer/.virtualenvs/billiard/lib/python2.7/site-packages/billiard/pool.py", line 1016, in __init__ self._result_handler.start() File "/

[issue22985] Segfault on time.sleep

2014-12-06 Thread Omer Katz
Omer Katz added the comment: So why exactly the program terminates on a system call? 2014-12-05 23:44 GMT+02:00 STINNER Victor : > > STINNER Victor added the comment: > > > Program received signal SIGTERM, Terminated. > > SIGTERM is not a segmentation fault. SIGSEGV is for segmentation faults.

[issue22985] Segfault on time.sleep

2014-12-05 Thread STINNER Victor
STINNER Victor added the comment: > Program received signal SIGTERM, Terminated. SIGTERM is not a segmentation fault. SIGSEGV is for segmentation faults. -- nosy: +haypo resolution: -> not a bug status: open -> closed ___ Python tracker

[issue22985] Segfault on time.sleep

2014-12-02 Thread Omer Katz
New submission from Omer Katz: I have found what appears to be a segfualt in time.sleep but I'm not sure. I have verified that the segfualt occurs both on Python 2.7.8 and 3.4.2. The following program that reproduces the segfault uses my fork of billiard, a replacement for the multiprocessing m