Tasks w/ same Priority Interrupt even with time slice off

dnewby wrote on Wednesday, December 02, 2015:

My sys tick interrupt occurs and it switches to task1 afterwards. Is there a configuration to set so that the same task runs before and after a context switch even if there are other tasks with the same priority?

Also, if I change my tasks to print ‘1’ or ‘2’ respectively in the task loop, it prints '1’s until the systick interrupt, then '2’s, as you have said would happen. However, it never switches back to '1’s on the next systick interrupt. Why does it only switch tasks on the first occurence of the interrupt?