aboutsummaryrefslogtreecommitdiff
path: root/include/apos/attrs.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2021-09-12 21:51:10 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2021-09-12 21:51:10 +0300
commitd95c714c8cfdc5818b0e0f0c99cf2e5be66de202 (patch)
tree3b7b7a4fda733f284a4f77a9e67cc509201cfeca /include/apos/attrs.h
parent1ab464d959b9ee3d3bb6758ac0d9d33fc6c77e46 (diff)
downloadkmi-d95c714c8cfdc5818b0e0f0c99cf2e5be66de202.tar.gz
kmi-d95c714c8cfdc5818b0e0f0c99cf2e5be66de202.zip
Initial physical page manager
+ Will probably still need a fair bit of tweakind and documentation improvements, but seems to work outside of the kernel. Also no valgrind errors, which is quite promising I guess.
Diffstat (limited to 'include/apos/attrs.h')
-rw-r--r--include/apos/attrs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/apos/attrs.h b/include/apos/attrs.h
index e088ec9..ae936d9 100644
--- a/include/apos/attrs.h
+++ b/include/apos/attrs.h
@@ -3,7 +3,8 @@
#define __section(section) __attribute__((__section__(section)))
#define __fmt(x, y) __attribute__((format (__printf__, x, y)))
#define __noinline __attribute__((noinline))
-#define __weak __attribute__((weak))
+#define __noreturn __attribute__((noreturn))
#define __packed __attribute__((packed))
+#define __weak __attribute__((weak))
#endif /* APOS_COMPILER_ATTRIBUTES_H */