Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #99380 > unrolled thread
| Started by | Zachary Ware <zachary.ware+pylist@gmail.com> |
|---|---|
| First post | 2015-11-24 12:11 -0600 |
| Last post | 2015-11-24 12:11 -0600 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Futex hang when running event loop on a separated thread Zachary Ware <zachary.ware+pylist@gmail.com> - 2015-11-24 12:11 -0600
| From | Zachary Ware <zachary.ware+pylist@gmail.com> |
|---|---|
| Date | 2015-11-24 12:11 -0600 |
| Subject | Re: Futex hang when running event loop on a separated thread |
| Message-ID | <mailman.23.1448388696.20593.python-list@python.org> |
On Tue, Nov 24, 2015 at 9:46 AM, Marc Aymerich <glicerinu@gmail.com> wrote:
> if __name__ == '__main__':
> loop_container = {}
> handler = threading.Thread(target=run_loop, args=(loop_container, ))
> handler.start()
> try:
> time.sleep(10000)
> finally:
> loop_container['loop'].stop()
loop.stop() must be called from the thread running the loop. You can
do this by doing
`loop_container['loop'].call_soon_threadsafe(loop_container['loop'].stop)`
from the main thread (untested).
Hope this helps,
--
Zach
Back to top | Article view | comp.lang.python
csiph-web