-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
Description
Hi,
I'd like to use llfuse as part of an asynchronous application (typically having a main thread with the asynchronous loop, then at one point starting a new thread that will run llfuse.main)
The thing is the asynchronous framework (trio in my case) already install signal handlers (and for pretty good reasons 😄 ).
So my questions are:
- is it possible to prevent llfuse from overwriting the signals handlers ?
- is there a way to terminate
llfuse.mainfrom another thread (typically from the asynchronous loop) ?