stos/amd64: Add processor primitives

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-23 20:13:49 +00:00
parent b6d4a1c963
commit 69ddd09500
2 changed files with 61 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: Processor primitives
* Author: Chloe M.
*/
#ifndef _HAL_PRIM_H_
#define _HAL_PRIM_H_ 1
#include <machine/prim.h>
#define HalCpuSuspend MdCpuSuspend
#define HalCpuSpinWait MdCpuSpinWait
#define HalCpuAswap MdCpuAswap
#endif /* !_HAL_PRIM_H_ */