What architecture are we talking here - IA32/AMD64?
If so, you have two options - a hardware context switch (IA32, legacy) or software context switch (any CPU mode and equally applicable to any CPU with no hardware context switching). Hardware context switching is covered in depth in the Intel Software Developers Manuals, which you should have if you are OS Dev'ing on x86. If you are software context switching, the idea is to push all registers on to the stack, store the value of the stack pointer and then switch stacks.
As a part of context switching, you will generally switch to a new virtual memory space and reload CR3 (or its alternative on non-x86 processors). This will automatically flush the TLB except for pages marked as "Global". If you want a more in-depth answer, you need to be a bit more specific with the question.