summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/include/arch/hlt.h
blob: 3709df2807c759b7be69ff63bb3d8050047bd90e (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef ARCH_HLT_H
#define ARCH_HLT_H

static __always_inline void hlt(void)
{
	asm("hlt");
}

#endif /* ARCH_HLT_H */