I want to learn more about -j[jobs], --jobs=[jobs] #807
-
|
As far as I know, ecode is a multithreaded but single-process program (similar to legacy Firefox). What does this switch do? I’m thinking it might be something like launching multiple |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
It's the number of job threads it will create ecode for the thread pool, which all the async task are executed, by default the thread pool will have a thread per core. This is just to change that, it's useful mostly for debugging purposes, you shouldn't change the default number. |
Beta Was this translation helpful? Give feedback.
It's the number of job threads it will create ecode for the thread pool, which all the async task are executed, by default the thread pool will have a thread per core. This is just to change that, it's useful mostly for debugging purposes, you shouldn't change the default number.