[lldb-dev] Threading model for Python API

2019-08-05 Thread Christian Biesinger via lldb-dev
Hi there! I was wondering what the threading model is for the Python API (when running inside of LLDB, in implementing a command)? For example: If I create a Python thread in my command, how do I access the LLDB API? Is there an equivalent of gdb's post_event function to run it on the main thread

Re: [lldb-dev] Threading model for Python API

2019-08-05 Thread Christian Biesinger via lldb-dev
her things the process is stopped and tries to > get and display local variables. > > So yes the API is thread safe, but be careful with how you use things. > > Greg > > > On Aug 5, 2019, at 8:59 AM, Christian Biesinger via lldb-dev > > wrote: > > > > H