Threading #2191
Answered
by
negasora
BluePython339
asked this question in
Q&A
Threading
#2191
-
When using multi threading inside the GUI of Binary ninja, it does not seem to run my functions, as a test I ran the following code inside a plugin:
it doesnt print anything, however if i run it using a normal python shell it does work properly. Is the gui blokking multithreading? |
Beta Was this translation helpful? Give feedback.
Answered by
negasora
Jan 6, 2021
Replies: 1 comment
-
The functions run, but we don't connect to stdin/stdout/stderr of threads spawned from the console - thus no output. from threading import Thread
Thread(target=log_alert, args=('test',)).start() |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
negasora
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The functions run, but we don't connect to stdin/stdout/stderr of threads spawned from the console - thus no output.
You can verify this via