Memory Operations During Context Switch: Impact on Priority Tasks?
Hi @Middleware & OS I have two tasks,
And
now Task
A and B, with A being high priority and B low priority. There are two global variables, condition and mem. Let's say Task B is currently running and performing memory operations. If Task A becomes ready while Task B is running, resulting in a context switch, will the memory operation continue even if the condition is set to false? If so, at which index will it restart? And what will the content of mem be after Task B finishes executing?And
now Task
A is finshed and yields resources for Task B to run.