From db7277df5ed4a0951698697b62afa823c3ba0d72 Mon Sep 17 00:00:00 2001 From: "Douglas B. Rumbaugh" Date: Sun, 2 Nov 2025 13:23:50 -0500 Subject: Intial commit: No free list management yet --- include/constants.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/constants.h (limited to 'include/constants.h') 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 + * + * Distributed under the Modified BSD License + * + */ +#ifndef H_LIBALLOC_CONST +#define H_LIBALLOC_CONST + +#define MAGIC_NUMBER 0x123456789 +#define ALIGNMENT 16 + +#endif -- cgit v1.2.3