summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-17 02:50:43 -0400
committerIan Moffett <ian@osmora.org>2025-09-17 02:50:43 -0400
commit310ddfe46bfe3beffb9a224c36eba74a49c7c77d (patch)
treec28ecb9b312bd9deaf1c326c30175daa36cb8572
parent372f5ea971f6e6191b20f81d73bd742d66fbc404 (diff)
sys: cpuvar: Mark machine dependent routines as MD
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--src/sys/include/sys/cpuvar.h6
1 files changed, 6 insertions, 0 deletions
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 */