We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acea647 commit c40d554Copy full SHA for c40d554
src/data.c
@@ -108,11 +108,12 @@ const dispatch_block_t _dispatch_data_destructor_none = ^{
108
DISPATCH_INTERNAL_CRASH(0, "none destructor called");
109
};
110
111
+#if !HAVE_MACH
112
const dispatch_block_t _dispatch_data_destructor_munmap = ^{
113
DISPATCH_INTERNAL_CRASH(0, "munmap destructor called");
114
-
115
-#if HAVE_MACH
+#else
116
+// _dispatch_data_destructor_munmap is a linker alias to the following
117
const dispatch_block_t _dispatch_data_destructor_vm_deallocate = ^{
118
DISPATCH_INTERNAL_CRASH(0, "vmdeallocate destructor called");
119
0 commit comments