Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #99384

Re: Futex hang when running event loop on a separated thread

From Marc Aymerich <glicerinu@gmail.com>
Newsgroups comp.lang.python
Subject Re: Futex hang when running event loop on a separated thread
Date 2015-11-24 19:37 +0100
Message-ID <mailman.25.1448390283.20593.python-list@python.org> (permalink)
References <CA+DCN_s77howCh5ptdGwtsF9Z3-r0nRhu-q2t43jdXKTdqSMGw@mail.gmail.com> <CA+DCN_vp8nFS-gOrQMYYefhVt2W0oAP+rFcKQbQ7K+hOHwvuuQ@mail.gmail.com> <CAKJDb-MY9W518kKhFf8vbZAfFad=uGXefDePf1KLpUJV9H3Rpg@mail.gmail.com>

Show all headers | View raw


On Tue, Nov 24, 2015 at 7:11 PM, Zachary Ware
<zachary.ware+pylist@gmail.com> wrote:
> 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).
>

Hi Zachary,
nice to know about call_soon_threadsafe!

still it appears to work only if the main thread is in the foreground
(as of calling Thread() with deamon=True), I don't get why it behaves
differently :( maybe it is waiting for other stuff, but no idea how to
confirm this with strace of other means.. i always see the same
'futex(0x7f9a70000c10, FUTEX_WAIT_PRIVATE, 0, NULL'

-- 
Marc

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Futex hang when running event loop on a separated thread Marc Aymerich <glicerinu@gmail.com> - 2015-11-24 19:37 +0100

csiph-web