From 310ddfe46bfe3beffb9a224c36eba74a49c7c77d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 17 Sep 2025 02:50:43 -0400 Subject: sys: cpuvar: Mark machine dependent routines as MD Signed-off-by: Ian Moffett --- src/sys/include/sys/cpuvar.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/sys/include/sys/cpuvar.h b/src/sys/include/sys/cpuvar.h index 5820646..a41131b 100644 --- a/src/sys/include/sys/cpuvar.h +++ b/src/sys/include/sys/cpuvar.h @@ -85,6 +85,8 @@ void cpu_init(struct pcore *pcore); * * @index: Index / logical ID of desired processor * + * [MD] + * * Returns a pointer to the core descriptor on success, * otherwise NULL to represent failure. */ @@ -94,6 +96,8 @@ struct pcore *cpu_get(uint16_t index); * Get the current processing element (core) as * a 'pcore' descriptor. * + * [MD] + * * Returns NULL on failure. */ struct pcore *this_core(void); @@ -101,6 +105,8 @@ struct pcore *this_core(void); /* * Start up the application processes from the * bootstrap processor. + * + * [MD] */ void bsp_ap_startup(void); #endif /* _KERNEL */ -- cgit v1.2.3