aboutsummaryrefslogtreecommitdiffstats
path: root/include/constants.h
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-11-02 13:23:50 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-11-02 13:23:50 -0500
commitdb7277df5ed4a0951698697b62afa823c3ba0d72 (patch)
tree99d9a004146ec383ea63c395b51740616ee8d1f8 /include/constants.h
downloadliballoc-db7277df5ed4a0951698697b62afa823c3ba0d72.tar.gz
Intial commit: No free list management yet
Diffstat (limited to 'include/constants.h')
-rw-r--r--include/constants.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/constants.h b/include/constants.h
new file mode 100644
index 0000000..7d88060
--- /dev/null
+++ b/include/constants.h
@@ -0,0 +1,18 @@
+/*
+ * include/constants.h
+ *
+ * Configuration constant values for liballoc
+ * CISC 301 -- Operating Systems, Project 3
+ *
+ * Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
+ *
+ * Distributed under the Modified BSD License
+ *
+ */
+#ifndef H_LIBALLOC_CONST
+#define H_LIBALLOC_CONST
+
+#define MAGIC_NUMBER 0x123456789
+#define ALIGNMENT 16
+
+#endif