aboutsummaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorian <ian>2023-08-17 03:29:43 +0000
committerian <ian>2023-08-17 03:29:43 +0000
commit8bde9e4f37df7cc6b60d818363e5981e46356b3d (patch)
treef10c1e46845e60e6e6fa3c481ffb946acef833a1 /sys/include
parent01ed65f720a32e35d12c7f4d68297e3599157846 (diff)
kernel/amd64: machdep: Refactor attribute usage
Use __weak only in headers git-svn-id: https://svn.vegaa.systems/svn/vega-Vega/trunk@30 a8a8aea2-181d-ee11-89e8-15fd0e089fc4
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/machdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/include/sys/machdep.h b/sys/include/sys/machdep.h
index b9a6221..bd914bb 100644
--- a/sys/include/sys/machdep.h
+++ b/sys/include/sys/machdep.h
@@ -37,8 +37,8 @@
#if defined(_KERNEL)
-void processor_init(void);
-void processor_halt(void);
+__weak void processor_init(void);
+__weak void processor_halt(void);
#endif /* defined(_KERNEL) */
#endif /* !_SYS_MACHDEP_H_ */