blob: 8cb2db7c653b75c0a462d59565eebaa330e707fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* 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
#define SPLIT_THRESHOLD 64
#endif
|