I want to create another process to monitor original process on nrf9160 can I do that?
(not create thread)
I want to create another process to monitor original process on nrf9160 can I do that?
(not create thread)
Hi,
I want to create another process to monitor original process on nrf9160 can I do that?
Not 100% sure what you want to do here. Do you want to inspect the current thread wrt. stack usage? If yes, please see CONFIG_THREAD_ANALYZER, as shown in this config:
Or do you want to ensure that a specific thread does not hang? If that is the case, you can use the watchdog.
Kind regards,
Håkon
TAHNKS FIRSt
EX:
create 2 apps for hello world can I do that?
Hi,
No, you cannot fork a thread in zephyr.
You can however setup two individual threads that calls the same function. Be sure to make the function re-entrant.
Kind regards,
Håkon
thanks a lot you are good man