stephan-hof / pthread_event

Python C-Extension using pthread to reimplement threading.Event

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python C-Extension using pthread to reimplement threading.Event

threading.Event in python 2.X uses a sleep-poll loop to wait for an event. This module uses the native pthread calls 'pthread_cond_timedwait' and 'pthread_cond_wait' to accomplish the same task.

About

Python C-Extension using pthread to reimplement threading.Event


Languages

Language:C 72.6%Language:Python 27.4%