You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we reuse signal to trigger the various event on the device, this mechanism has several restrictions.
We only have very limited signal on Unix, we may run out of available signal for all events
Signal can not pass additional parameter information other than the command itself
All signals have default actions, we overwrite those default behaviors, such as Ctrl+C can not terminate the program.
Proposed Solution
Use named pipe instead of signal to trigger the event
The text was updated successfully, but these errors were encountered:
Problem
Currently, we reuse signal to trigger the various event on the device, this mechanism has several restrictions.
We only have very limited signal on Unix, we may run out of available signal for all events
Signal can not pass additional parameter information other than the command itself
All signals have default actions, we overwrite those default behaviors, such as Ctrl+C can not terminate the program.
Proposed Solution
Use named pipe instead of signal to trigger the event
The text was updated successfully, but these errors were encountered: