1 // SPDX-License-Identifier: GPL-2.0
3 //! Processor related primitives.
5 //! C header: [`include/linux/processor.h`](srctree/include/linux/processor.h)
7 /// Lower CPU power consumption or yield to a hyperthreaded twin processor.
9 /// It also happens to serve as a compiler barrier.
12 // SAFETY: Always safe to call.
13 unsafe { bindings::cpu_relax() }