You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,13 @@
7
7
8
8
Replace malloc/free with xmalloc/xfree is faster than the global heap and prevents heap fragmentation faults.
9
9
10
+
Originally published on CodeProject at: <ahref="https://www.codeproject.com/Articles/1084801/Replace-malloc-free-with-a-Fast-Fixed-Block-Memory"><strong>Replace malloc/free with a Fast Fixed Block Memory Allocator</strong></a>
11
+
10
12
# Table of Contents
11
13
12
14
-[Replace malloc/free with a Fast Fixed Block Memory Allocator](#replace-mallocfree-with-a-fast-fixed-block-memory-allocator)
13
15
-[Table of Contents](#table-of-contents)
14
-
-[Preface](#preface)
16
+
-[Getting Started](#getting-started)
15
17
-[Introduction](#introduction)
16
18
-[Storage Recycling](#storage-recycling)
17
19
-[Heap vs. Pool](#heap-vs-pool)
@@ -27,11 +29,14 @@ Replace malloc/free with xmalloc/xfree is faster than the global heap and preven
27
29
-[Conclusion](#conclusion)
28
30
29
31
30
-
# Preface
32
+
# Getting Started
31
33
32
-
Originally published on CodeProject at: <ahref="https://www.codeproject.com/Articles/1084801/Replace-malloc-free-with-a-Fast-Fixed-Block-Memory"><strong>Replace malloc/free with a Fast Fixed Block Memory Allocator</strong></a>
34
+
[CMake](https://cmake.org/) is used to create the project build files on any C++ system including Windows, Linux, or an embedded system.
33
35
34
-
<p><ahref="https://www.cmake.org/">CMake</a> is used to create the build files. CMake is free and open-source software. Windows, Linux and other toolchains are supported. See the <strong>CMakeLists.txt </strong>file for more information.</p>
36
+
1. Clone the repository.
37
+
2. From the repository root, run the following CMake command:
38
+
`cmake -B Build .`
39
+
3. Build and run the project within the `Build` directory.
0 commit comments