File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ terms of the MIT license. A copy of the license can be found in the file
14
14
// functions and macros.
15
15
// --------------------------------------------------------------------------
16
16
17
- #include " mimalloc/ types.h"
18
- #include " mimalloc/ track.h"
17
+ #include " types.h"
18
+ #include " track.h"
19
19
20
20
#if (MI_DEBUG>0)
21
21
#define mi_trace_message (...) _mi_trace_message(__VA_ARGS__)
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ terms of the MIT license. A copy of the license can be found in the file
23
23
24
24
#include <stddef.h> // ptrdiff_t
25
25
#include <stdint.h> // uintptr_t, uint16_t, etc
26
- #include "mimalloc/ atomic.h" // _Atomic
26
+ #include "atomic.h" // _Atomic
27
27
28
28
#ifdef _MSC_VER
29
29
#pragma warning(disable:4214) // bitfield is not int
@@ -387,7 +387,7 @@ typedef struct mi_memid_s {
387
387
// Segments contain mimalloc pages
388
388
// ---------------------------------------------------------------
389
389
390
- // Segments are large allocated memory blocks (2MiB on 64 bit) from the OS.
390
+ // Segments are large allocated memory blocks (2MiB on 64 bit) from the OS.
391
391
// Inside segments we allocated fixed size _pages_ that contain blocks.
392
392
typedef struct mi_segment_s {
393
393
// constant fields
You can’t perform that action at this time.
0 commit comments