/* * \brief ARM non-SMP specific kernel thread implementations * \author Stefan Kalkowski * \date 2015-12-20 */ /* * Copyright (C) 2015-2016 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ /* core includes */ #include #include void Kernel::Thread::_call_update_pd() { Pd * const pd = (Pd *) user_arg_1(); Cpu * const cpu = cpu_pool()->cpu(Cpu::executing_id()); cpu->invalidate_instr_cache(); cpu->clean_invalidate_data_cache(); cpu->invalidate_tlb_by_pid(pd->asid); }