koekeishiya / yabai

A tiling window manager for macOS based on binary space partitioning
MIT License
24.13k stars 647 forks source link

macOS 10.15 Catalina Developer Beta #22

Closed dominiklohmann closed 5 years ago

dominiklohmann commented 5 years ago

As usual, here's the yearly thread. This first post will always be updated to reflect the current beta situation, and edits will be made clear via strikethrough.

The patch notes can be found here for registered developers: https://developer.apple.com/documentation/macos_release_notes/macos_10_15_beta_release_notes

The SDK diffs are ~not yet available as of writing this, but will likely be~ available in a searchable format here: http://codeworkshop.net/objc-diff/sdkdiffs/macos/10.15/

I'll be installing later today and will be testing, this thread will be continuously updated throughout the betas whenever I find time to test things. Please post questions below and make this issue your thread for all things macOS beta.

Interesting things:

~Edit: on a personal note, I'll be without a second device for a while—the local apple store broke my display while replacing my keyboard last week, causing it to flicker in the lower third. I'm being told the replacement will take ~10–14~ 17–21 days, so bear with me as this thread returns to full activity sometime between June 14th and June 18th.~

As of June 24th, the public beta is out. It's the same build as dev beta 2. If you're reading this, do yourself a favour and don't make this your daily driver yet if you use Photos or iCloud Drive.

dominiklohmann commented 5 years ago

Alright so here's a first version of Dock.app for the beta 1, version 19A471t.

Dock.app.zip

Scripting addition features that are broken:

This seems to be no bigger update to Dock.app than the usual minor update to macOS. All the accessibility API features seem to still work as usual.

Catalyst apps seem to behave really well and are now as responsive as native windows, they feel really good, especially considering it's a first beta.

koekeishiya commented 5 years ago

Can you upload the new Skylight.framework as well? (/System/Library/Privateframeworks/SkyLight.framework)

dominiklohmann commented 5 years ago

Can you upload the new Skylight.framework as well? (/System/Library/Privateframeworks/SkyLight.framework)

Here you go: SkyLight.framework.zip

dominiklohmann commented 5 years ago

Found a new thing that might be interesting.

Hovering over the green menu bar button now shows three options (these were all available before, but the popup is new):

image

But if you hold down alt while doing so, you get these options. They are animated (no smoother than what fn + rightclick drag does in yabai, so there's no fancy stuff to reverse engineer) and because of their animation they to make windows break free from tiling in yabai.

image

koekeishiya commented 5 years ago

@dominiklohmann

Thanks for uploading the new version of Dock.app and SkyLight.framework. So far there have not been any changes that will break what we are doing. I have updated the scripting addition with full support for this developer version - as a proof of concept. This will likely be the only time I do so until a public beta becomes available.

Are you positive opacity stopped working, or did you maybe just forget to enable the config setting? The function we use to set alpha looks unchanged in SkyLight. We are calling the CGS equivalent one though, maybe they just stubbed that out?

Can you confirm the following functionality from the master branch once you have the time to do so:

dominiklohmann commented 5 years ago

Can you confirm the following functionality from the master branch once you have the time to do so:

This might take a while since I've only got one device right now and I'm definitely not putting a beta 1 build on the only MacBook available to me right now. I blame the local Apple Store for killing my MacBooks display while replacing the keyboard last week, so I had to give it back to them as soon as the replacement display they ordered was available. At least the repair is free this way. 🤷‍♂

Are you positive opacity stopped working, or did you maybe just forget to enable the config setting?

Pretty sure I enabled it properly, but I'll check again when I'm able to run the beta again. We're on hold for another 9–13 days here I think. Won't matter much though since the public beta won't be available until July so the support requests to get yabai working shouldn't be all that many until then.

choco commented 5 years ago

I'm running Catalina on a testing setup and found out about yabai (great works as always btw) so I gave it a test drive. First issue I noticed, the check in EVENT_HANDLER_MISSION_CONTROL_CHECK_FOR_EXIT (looking for Dock) doesn't seem to work here (no dock window) :(

choco commented 5 years ago

Took a better look and the dock windows are returned, but they are missing the kCGWindowName key. Strangely the same code from Swift has a kCGWindowName entry...

koekeishiya commented 5 years ago

Took a better look and the dock windows are returned, but they are missing the kCGWindowName key. Strangely the same code from Swift has a kCGWindowName entry...

This is likely a bug in the developer preview then? If not, as long as we get a window id (kCGWindowNumber ?) we can easily retrieve the title using SLSCopyWindowProperty(cid, wid, CFSTR("kCGSWindowTitle"), &cfstring_title);

choco commented 5 years ago

I was doing something like this

@@ -888,24 +888,22 @@ static EVENT_CALLBACK(EVENT_HANDLER_MISSION_CONTROL_CHECK_FOR_EXIT)

         CFStringRef owner = CFDictionaryGetValue(dictionary, kCGWindowOwnerName);
         if (!owner) continue;
-
         CFStringRef name = CFDictionaryGetValue(dictionary, kCGWindowName);
-        if (!name) continue;

-        if (CFEqual(CFSTR_DOCK, owner) && CFEqual(CFSTR_DOCK, name)) {
+        if (CFEqual(CFSTR_DOCK, owner) && (!name || CFEqual(CFSTR_DOCK, name))) {
             found = true;
             break;
         }
     }

in the mean time, since the only other dock owned window seems to be the desktop (and that returns a window name), but I'll check later if it return the name the other way.

choco commented 5 years ago

I tried SLSCopyWindowProperty and it still doesn't return the name ahah I'm wondering what printing the result from swift does differently

dominiklohmann commented 5 years ago

So I'm finally back to having two laptops, so I've just installed beta 2 on my secondary device. Most (all?) of the stuff that requires the scripting addition does not work. Further testing comes later when I've configured all my apps and dotfiles again (which I should really put in a git repo instead of doing this manually every time... ffs past me).

Here's Dock.app and Skylight.framework for beta 2: Dock.zip SkyLight.framework.zip

dominiklohmann commented 5 years ago

The dock window check that was reported broken by @choco works on beta 2, tested like this:

yabai -m signal --add event=mission_control_enter \
    action="terminal-notifier -message mission_control_enter"
yabai -m signal --add event=mission_control_exit \
    action="terminal-notifier -message mission_control_exit"

The notifications fire as expected.

koekeishiya commented 5 years ago

Updated the scripting addition for new version of the developer preview. It would be nice if someone could test all the functionality mentioned in my comment in #13

dominiklohmann commented 5 years ago

Just updated (and double checked that I did in fact reinstall sa). I take back my command about mission control check working—the exit fires immediately after the enter, although the enter check works properly.

Onto the other things on the list. It's looking bad so far.

focus a window

yabai -m window --focus ... has no effect.

focus space

yabai -m space --focus ... has no effect.

create space

yabai -m space --create has no effect.

destroy space

yabai -m space --destroy has no effect.

move space to display

yabai -m space --display ... has no effect.

koekeishiya commented 5 years ago

I'm positive that the functions are located properly. Does the scripting addition even load - is /tmp/yabai-sa_$USER.socket created? Do you get any messages in Console filtered by Dock when you issue pkill Dock while yabai is running. Should say something like: [yabai-sa] (0x10e032000) setFrontWindow found at address 0x10E0895DB (0x575db)

dominiklohmann commented 5 years ago

Does the scripting addition even load - is /tmp/yabai-sa_$USER.socket created?

Welp, there's the issue. Didn't even think of checking this. I wonder what went wrong, hopefully it's not locked down too much. SIP is disabled.

koekeishiya commented 5 years ago

@dominiklohmann

TotalSpaces seem to work on Catalina: https://discuss.binaryage.com/t/totalspaces-support-on-macos-10-15-catalina/7253/4

So I don't see why ours would suddenly stop loading, weird.

alin23 commented 5 years ago

I'm getting this in console: [yabai-sa] could not locate pointer to dock.spaces! spaces functionality will not work!

The yabai-sa socket is created in /tmp, I checked by deleting it and restarting yabai.

I attached my Dock.app and Skylight.framework (also on Catalina beta 2)

dock_and_skylight.zip

I'm running yabai built from source so let me know if I could add some debug printfs to check why it wouldn't work.

dominiklohmann commented 5 years ago

On my end the scripting addition fails to install to /System/Library/ScriptingAdditions, which I'll further investigate now. Really unsure sure what's happening here.

koekeishiya commented 5 years ago

I just downloaded the TotalSpaces trial I referenced above to verify that I did indeed locate the functions correctly. It should be working when installed properly.

@alin23

Make sure to reinstall the scripting addition. Run the following:

make sa
make install
sudo yabai --uninstall-sa
sudo yabai --install-sa
pkill Dock
./bin/yabai -V
dominiklohmann commented 5 years ago

Found something: On Catalina, the system is moved to a read-only file system on Macs with a T2 Chip, which is why mkdir inside of /System fails. This seems like major trouble. There are two APFS containers, and the /System is one is read-only and I fail to see how to make it writable. csrutil status returns disabled. sudo chmod +w /System/Library/ScriptingAdditions returns no error but has no effect.

This might be happening because I did a clean install this time around and did not have the osax still installed.

@alin23 Are you sure --install-sa works for you? Because you might just be using the scripting addition that was still installed from your previous Mojave installation.

I will try some things from the Recovery OS, maybe I can get something to work there.

koekeishiya commented 5 years ago

@dominiklohmann

For what it's worth, on Mojave I can place the scripting addition in /Library/ScriptingAdditions/ and it will load just fine into Dock.app. Note that SIP is still disabled.

dominiklohmann commented 5 years ago

https://medium.com/@hammen/significant-changes-in-macos-10-15-catalina-of-interest-to-mac-admins-fbc3865c055e

Similar to how iOS is configured, macOS is now on a separate partition from user data, which acts as if it is read-only (but in beta 1, it’s merely SIP-protected). In the beta, you’ll see “Macintosh HD” and “Macintosh HD — Data”. Data is a separate volume mounted in /System/Volumes. OS-installed applications live in /System/Applications, but the Finder presents them in /Applications as well. Apple calls the technology “firmlinking”. Beta 2 will be fully read-only by default.

Emphasis mine. ~My goodness, this sounds super bad.~ Did not need to panic, see below.

dominiklohmann commented 5 years ago

@koekeishiya For what it's worth, on Mojave I can place the scripting addition in /Library/ScriptingAdditions/ and it will load just fine into Dock.app. Note that SIP is still disabled.

Tried this, it works. Added a diff below that can be applied. The /System one is definitely dead though.

Every single SA feature works now. Did not need to panic. Phew!

diff --git a/src/osax/sa.m b/src/osax/sa.m
index 6729943..674fed5 100644
--- a/src/osax/sa.m
+++ b/src/osax/sa.m
@@ -1,21 +1,21 @@
 #include "sa.h"

-#define OSAX_DIR                  "/System/Library/ScriptingAdditions/yabai.osax"
-#define CONTENTS_DIR              "/System/Library/ScriptingAdditions/yabai.osax/Contents"
-#define CONTENTS_MACOS_DIR        "/System/Library/ScriptingAdditions/yabai.osax/Contents/MacOS"
-#define RESOURCES_DIR             "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources"
-#define BUNDLE_DIR                "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle"
-#define BUNDLE_CONTENTS_DIR       "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents"
-#define BUNDLE_CONTENTS_MACOS_DIR "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS"
+#define OSAX_DIR                  "/Library/ScriptingAdditions/yabai.osax"
+#define CONTENTS_DIR              "/Library/ScriptingAdditions/yabai.osax/Contents"
+#define CONTENTS_MACOS_DIR        "/Library/ScriptingAdditions/yabai.osax/Contents/MacOS"
+#define RESOURCES_DIR             "/Library/ScriptingAdditions/yabai.osax/Contents/Resources"
+#define BUNDLE_DIR                "/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle"
+#define BUNDLE_CONTENTS_DIR       "/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents"
+#define BUNDLE_CONTENTS_MACOS_DIR "/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS"

-#define INFO_PLIST_FILE           "/System/Library/ScriptingAdditions/yabai.osax/Contents/Info.plist"
-#define DEFINITION_FILE           "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/yabai.sdef"
-#define BUNDLE_INFO_PLIST_FILE    "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/Info.plist"
+#define INFO_PLIST_FILE           "/Library/ScriptingAdditions/yabai.osax/Contents/Info.plist"
+#define DEFINITION_FILE           "/Library/ScriptingAdditions/yabai.osax/Contents/Resources/yabai.sdef"
+#define BUNDLE_INFO_PLIST_FILE    "/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/Info.plist"

-#define BIN_INJECTOR              "/System/Library/ScriptingAdditions/yabai.osax/Contents/MacOS/loader"
-#define BIN_CORE                  "/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS/payload"
+#define BIN_INJECTOR              "/Library/ScriptingAdditions/yabai.osax/Contents/MacOS/loader"
+#define BIN_CORE                  "/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS/payload"

-#define CMD_SA_REMOVE             "rm -rf /System/Library/ScriptingAdditions/yabai.osax 2>/dev/null"
+#define CMD_SA_REMOVE             "rm -rf /Library/ScriptingAdditions/yabai.osax 2>/dev/null"

 static char sa_def[] =
     "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
@@ -125,10 +133,10 @@ static bool scripting_addition_write_file(char *buffer, unsigned int size, char

 static void scripting_addition_prepare_binaries(void)
 {
-    system("chmod +x \"/System/Library/ScriptingAdditions/yabai.osax/Contents/MacOS/loader\"");
-    system("chmod +x \"/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS/payload\"");
-    system("codesign -f -s - \"/System/Library/ScriptingAdditions/yabai.osax/Contents/MacOS/loader\" 2>/dev/null");
-    system("codesign -f -s - \"/System/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS/payload\" 2>/dev/null");
+    system("chmod +x \"/Library/ScriptingAdditions/yabai.osax/Contents/MacOS/loader\"");
+    system("chmod +x \"/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS/payload\"");
+    system("codesign -f -s - \"/Library/ScriptingAdditions/yabai.osax/Contents/MacOS/loader\" 2>/dev/null");
+    system("codesign -f -s - \"/Library/ScriptingAdditions/yabai.osax/Contents/Resources/payload.bundle/Contents/MacOS/payload\" 2>/dev/null");
 }

 bool scripting_addition_is_installed(void)
alin23 commented 5 years ago

@dominiklohmann @koekeishiya yep, that was it. Replacing /System/Library/ScriptingAdditions with /Library/ScriptingAdditions fixes everything. I didn't notice that /System is not writable.

capaldo commented 5 years ago

@dominiklohmann @koekeishiya yep, that was it. Replacing /System/Library/ScriptingAdditions with /Library/ScriptingAdditions fixes everything. I didn't notice that /System is not writable.

I believe all system files are being moved to an unwriteable volume (under the security section)

dominiklohmann commented 5 years ago

The hover menu on the maximise button can be accessed with keyboard shortcuts if properly configured in System Preferences (see screenshot).

image

Moving a window left or right, zooming it or reverting to its original position is animated (lags ever so slightly), which makes me wonder if there's some new private API for moving and resizing windows that could be reverse engineered. Or they could just be calling the move/resize functions several times, not sure.

I uploaded a screencast → here.

koekeishiya commented 5 years ago

@dominiklohmann

I assume the code for this is inside the AppKit framework. From what I've seen so far windows on macOS seem to follow the following abstraction:

_CGSWindow (WindowServer's knowledge of a window - essentially is the backing store and "primitive" properties only)

->

NSCGSWindow (Intermediary representation used by the macOS GUI frameworks to bridge a _CGSWindow and NSWindow). I have tested by manipulating a window (owned by my own application) through this interface, and it is sort of weird to see how it all comes together.

->

NSWindow (The window accessible to GUI applications). Responsibility for telling the underlaying representation what its dimensions are, how it expects to be drawn to the screen, event handling and what not happens at this level.

dominiklohmann commented 5 years ago

@koekeishiya do you have any idea how to properly transition between 10.14 and 10.15? Some thoughts:

If there are no downsides I really think the transition should be happening as soon as possible. Definitely before the public beta goes live (rumors say pub beta 1 is dev beta 3).

koekeishiya commented 5 years ago

The downside of moving it into /Library is that people running High Sierra can no longer reactivate SIP. I suppose I need to do some ifdefs to decide the path based on the OS version?

As for Mojave+, I think we should be moving it to /Library right about.. right now. I'd rather deal with the few issues that may arise now, especially since yabai is not officially released yet.

There is nothing stopping people that are running Mojave from manually running sudo rm -rf /System/Library/ScriptingAdditions/yabai.osax at any point.

Edit: ifdefs won't work since we are going to provide prebuilt binaries..

Added code to check the current operating system version. If Mojave and newer use /Library/.. and if High Sierra use /System/...

If you have previously installed yabai on Mojave, simply do: sudo rm -rf /System/Library/ScriptingAdditions/yabai.osax and reinstall using sudo yabai --install-sa.

dominiklohmann commented 5 years ago

Might also be a good opportunity to put out word that chunkwm will not run properly on macOS 10.15. Unless you plan to update it, that is.

koekeishiya commented 5 years ago

Might also be a good opportunity to put out word that chunkwm will not run properly on macOS 10.15. Unless you plan to update it, that is.

I've made it explicit that chunkwm only runs on High Sierra and Mojave. I've also made it so that the scripting-addition bundled with chunkwm will not be installable on any macOS version newer than Mojave.

chriswmartin commented 5 years ago

On beta 2 after setting

yabai -m config window_opacity               on  
yabai -m config active_window_opacity        1.0  
yabai -m config normal_window_opacity        0.90

I was left with a blank black screen until removing the lines from my config in safe mode. I'm not sure where to find log files or anything else that could be helpful so if you would like any more information let me know!

dominiklohmann commented 5 years ago

I can reproduce the issue with window opacity on beta 2, here's a crash report of WindowServer:

Click to expand ``` Process: WindowServer [16466] Path: /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer Identifier: WindowServer Version: 600.00 (420) Code Type: X86-64 (Native) Parent Process: launchd [1] Responsible: WindowServer [16466] User ID: 88 Date/Time: 2019-06-22 20:43:27.706 +0200 OS Version: Mac OS X 10.15 (19A487l) Report Version: 12 Bridge OS Version: 4.0 (17P50482j) Anonymous UUID: 7754B96D-2B03-57AE-9A3B-249F859121FE Sleep/Wake UUID: 4A14533C-E0FC-46AF-AE8F-1EFBADC747F2 Time Awake Since Boot: 69000 seconds Time Since Wake: 200 seconds System Integrity Protection: disabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [16466] VM Regions Near 0x10: --> __TEXT 000000010740e000-0000000107410000 [ 8K] r-x/r-x SM=COW /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer Application Specific Information: StartTime:2019-06-22 00:01:41 GPU:IG&AMD MetalDevice for accelerator(0x3627): 0x7f802e415d08 (MTLDevice: 0x1077c6000) MetalDevice for accelerator(0x4403): 0x7f803280a488 (MTLDevice: 0x107798000) IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/IGPU@2/AppleIntelFramebuffer@0 Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 com.apple.SkyLight 0x00007fff6126bfee __fadeFinished_block_invoke + 20 1 com.apple.SkyLight 0x00007fff6126b685 fadeFinished + 139 2 com.apple.SkyLight 0x00007fff61272636 CGXSetWindowListAlpha + 58 3 com.apple.SkyLight 0x00007fff61408e09 _XSetWindowListAlpha + 169 4 com.apple.SkyLight 0x00007fff61266929 invocation function for block in connectionHandler(unsigned int, mach_msg_header_t*, void*) + 346 5 com.apple.SkyLight 0x00007fff6126678c invocation function for block in connectionHandler(unsigned int, mach_msg_header_t*, void*) + 79 6 com.apple.SkyLight 0x00007fff6139ba58 CGXHandleMessage + 139 7 com.apple.SkyLight 0x00007fff612640ef connectionHandler(unsigned int, mach_msg_header_t*, void*) + 216 8 com.apple.SkyLight 0x00007fff613e3716 post_port_data + 255 9 com.apple.SkyLight 0x00007fff613e337e CGXRunOneServicesPass + 1730 10 com.apple.SkyLight 0x00007fff613e3d91 server_loop + 91 11 com.apple.SkyLight 0x00007fff613e3d2f SLXServer + 1470 12 WindowServer 0x000000010740f33e 0x10740e000 + 4926 13 libdyld.dylib 0x00007fff6ad293f9 start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff6ae71286 mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6ae717ec mach_msg + 60 2 com.apple.CoreDisplay 0x00007fff340facf9 CoreDisplay::Mach::Server::Start() + 147 3 com.apple.CoreDisplay 0x00007fff340fae61 void* std::__1::__thread_proxy >, void (CoreDisplay::Mach::Server::*)(), CoreDisplay::Mach::Server*> >(void*) + 59 4 libsystem_pthread.dylib 0x00007fff6af34daa _pthread_start + 125 5 libsystem_pthread.dylib 0x00007fff6af316af thread_start + 15 Thread 2:: Dispatch queue: com.apple.VirtualDisplayListener 0 libsystem_kernel.dylib 0x00007fff6ae71286 mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6ae717ec mach_msg + 60 2 libsystem_kernel.dylib 0x00007fff6ae78b3e mach_msg_server_once + 270 3 com.apple.CoreDisplay 0x00007fff3403d393 -[VirtualDisplayListener rx] + 77 4 libdispatch.dylib 0x00007fff6acd7673 _dispatch_call_block_and_release + 12 5 libdispatch.dylib 0x00007fff6acd85fe _dispatch_client_callout + 8 6 libdispatch.dylib 0x00007fff6acddbc2 _dispatch_lane_serial_drain + 597 7 libdispatch.dylib 0x00007fff6acde546 _dispatch_lane_invoke + 363 8 libdispatch.dylib 0x00007fff6ace7bb5 _dispatch_workloop_worker_thread + 582 9 libsystem_pthread.dylib 0x00007fff6af31860 _pthread_wqthread + 336 10 libsystem_pthread.dylib 0x00007fff6af3169b start_wqthread + 15 Thread 3:: com.apple.coreanimation.render-server 0 libsystem_kernel.dylib 0x00007fff6ae71286 mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff6ae717ec mach_msg + 60 2 com.apple.QuartzCore 0x00007fff3fcbae9f CA::Render::Server::server_thread(void*) + 958 3 com.apple.QuartzCore 0x00007fff3fcbaad8 thread_fun(void*) + 25 4 libsystem_pthread.dylib 0x00007fff6af34daa _pthread_start + 125 5 libsystem_pthread.dylib 0x00007fff6af316af thread_start + 15 Thread 4: 0 libsystem_pthread.dylib 0x00007fff6af3168c start_wqthread + 0 Thread 5: 0 libsystem_pthread.dylib 0x00007fff6af3168c start_wqthread + 0 Thread 6: 0 libsystem_kernel.dylib 0x00007fff6ae712da semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff6acd8b0b _dispatch_sema4_timedwait + 76 2 libdispatch.dylib 0x00007fff6acd8f32 _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff6ace6769 _dispatch_worker_thread + 318 4 libsystem_pthread.dylib 0x00007fff6af34daa _pthread_start + 125 5 libsystem_pthread.dylib 0x00007fff6af316af thread_start + 15 Thread 7: 0 libsystem_pthread.dylib 0x00007fff6af3168c start_wqthread + 0 Thread 8: 0 libsystem_pthread.dylib 0x00007fff6af3168c start_wqthread + 0 Thread 9: 0 libsystem_pthread.dylib 0x00007fff6af3168c start_wqthread + 0 Thread 10: 0 libsystem_kernel.dylib 0x00007fff6ae712da semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff6acd8b0b _dispatch_sema4_timedwait + 76 2 libdispatch.dylib 0x00007fff6acd8f32 _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff6ace6769 _dispatch_worker_thread + 318 4 libsystem_pthread.dylib 0x00007fff6af34daa _pthread_start + 125 5 libsystem_pthread.dylib 0x00007fff6af316af thread_start + 15 Thread 11: 0 libsystem_kernel.dylib 0x00007fff6ae712da semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff6acd8b0b _dispatch_sema4_timedwait + 76 2 libdispatch.dylib 0x00007fff6acd8f32 _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff6ace6769 _dispatch_worker_thread + 318 4 libsystem_pthread.dylib 0x00007fff6af34daa _pthread_start + 125 5 libsystem_pthread.dylib 0x00007fff6af316af thread_start + 15 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00007fff6126bfda rbx: 0x0000000000000000 rcx: 0x00007fff971fdc00 rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x00007f802f1d5000 rbp: 0x00007ffee87d9290 rsp: 0x00007ffee87d9280 r8: 0x000007f802e5f943 r9: 0x0000000000000004 r10: 0x00007f802e500000 r11: 0x00007f802e5cf6f0 r12: 0x00007f802f1d5000 r13: 0x00007ffee87d9460 r14: 0x00007ffee87d92a0 r15: 0x00007f802e4a0190 rip: 0x00007fff6126bfee rfl: 0x0000000000010206 cr2: 0x0000000000000010 Logical CPU: 6 Error Code: 0x00000004 (no mapping for user data write) Trap Number: 14 Binary Images: 0x10740e000 - 0x10740fff3 WindowServer (600.00 - 420) <52235FAD-84C5-3471-B4F9-A31D0EC8E229> /System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer 0x1076c9000 - 0x1076c9fff com.apple.driver.IOAccelerator2D (438.1.9 - 438.1.9) /System/Library/Extensions/IOAccelerator2D.plugin/Contents/MacOS/IOAccelerator2D 0x109000000 - 0x109732fff CursorAsset (420) <3B235112-0EF0-3397-B186-741AB0C1F37D> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/CursorAsset 0x10eb97000 - 0x10ebaaff7 TouchBarEvent.bundle (225) /System/Library/CoreServices/TouchBarEvent.bundle 0x10f38b000 - 0x10f38e047 libobjc-trampolines.dylib (773.1) <2BEF4035-972C-3DE2-8836-42999FD9C380> /usr/lib/libobjc-trampolines.dylib 0x10f7ce000 - 0x10f894fff com.apple.AMDRadeonX4000GLDriver (3.0.47 - 3.0.0) <3250AE95-825F-3976-8FD3-5BB7F0864E67> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver 0x110fcf000 - 0x11106201f dyld (727) <1236D488-D22B-368E-99F7-23499FFEC65A> /usr/lib/dyld 0x7fff27eec000 - 0x7fff28003ff1 com.apple.AMDMTLBronzeDriver (3.0.47 - 3.0.0) /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver 0x7fff28004000 - 0x7fff289b5ff7 ATIRadeonX4000SCLib.dylib (3.0.47.1) <9C64C989-3D93-3019-81BB-1BE3B8697815> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/ATIRadeonX4000SCLib.dylib 0x7fff2c1b1000 - 0x7fff2cfd9ff7 com.apple.driver.AppleIntelKBLGraphicsGLDriver (14.0.47 - 14.0.0) <156271F4-5B5F-310F-B8CA-E3C16DC60701> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver 0x7fff2cfda000 - 0x7fff2d3a6ff5 com.apple.driver.AppleIntelKBLGraphicsMTLDriver (14.0.47 - 14.0.0) /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver 0x7fff3002c000 - 0x7fff3002cfff com.apple.Accelerate (1.11 - Accelerate 1.11) <5D5AB0F5-D796-3026-87CA-51808C3F5B89> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff30044000 - 0x7fff306b3fdf com.apple.vImage (8.1 - 522) <4F7037B2-2081-3A77-8E36-1E27454041AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff306b4000 - 0x7fff3091dfff libBLAS.dylib (1301) <9954B166-1A7A-3DA4-AF14-6B97BCBEE190> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff3091e000 - 0x7fff30be5fef libBNNS.dylib (132) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff30be7000 - 0x7fff30f8cfff libLAPACK.dylib (1301) <4D97EE1F-C77C-3D2F-9497-3C57AFEFB2D6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff30f8d000 - 0x7fff30fa2ff8 libLinearAlgebra.dylib (1301) <9520A463-1A95-362A-A9D9-3A636239086B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff30fa3000 - 0x7fff30fa8ff3 libQuadrature.dylib (7) <33DAFF3A-80A6-3D29-BE32-657416D47F76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff30fa9000 - 0x7fff31019fff libSparse.dylib (103) <872406D8-9531-392C-857C-4211149F2DB5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff3101a000 - 0x7fff3102cfef libSparseBLAS.dylib (1301) <734E8057-3CE8-3C5F-A60B-63BDB829B453> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff3102d000 - 0x7fff311fffef libvDSP.dylib (729) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff31200000 - 0x7fff312bbfd3 libvMisc.dylib (729) <2AE20233-93C1-3989-AED8-DA1E028EBEFA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff312bc000 - 0x7fff312bcfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <8A1127A0-698C-3BC7-B8E5-20FF0E680371> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff3145d000 - 0x7fff321f4ff1 com.apple.AppKit (6.9 - 1862.10.100) <2161671D-AD1B-33C1-8D55-706E833147F5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff32244000 - 0x7fff32244fff com.apple.ApplicationServices (48 - 50) <237CA268-91F7-313F-806E-BBEA9A21C96F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff32245000 - 0x7fff322b0fff com.apple.ApplicationServices.ATS (377 - 485) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff32349000 - 0x7fff32386ff3 libFontRegistry.dylib (262) <8DC70B4E-0D1E-3D26-BF17-98A4BCC7D6D6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff323e1000 - 0x7fff32410ff7 com.apple.ATSUI (1.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff32411000 - 0x7fff32415ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff324b0000 - 0x7fff32506ffa com.apple.HIServices (1.22 - 663) <3A029F8B-5297-366A-9B99-111C58E67B58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff32507000 - 0x7fff32515fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <11103CD5-BD3E-3FC7-90D2-8D8A9216EB16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff32516000 - 0x7fff3255bff2 com.apple.print.framework.PrintCore (15 - 515) <1EFE544D-63F0-3F87-8345-2C4D11E419F5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff3255c000 - 0x7fff32566fff com.apple.QD (4.0 - 413) <6CB8EE80-02CD-3CE5-9D0E-A89E2E0378F5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff32567000 - 0x7fff32573ff3 com.apple.speech.synthesis.framework (9.0.11 - 9.0.11) <1DD213CF-80B0-35EB-B5C0-D853F67DE051> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff32574000 - 0x7fff3263dff5 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <3E07C7EA-2ACD-3C27-834E-0515A8659E37> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff3263f000 - 0x7fff3263ffff com.apple.audio.units.AudioUnit (1.14 - 1.14) <476C498A-5307-3687-9350-3D93AEF97A0E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff329b2000 - 0x7fff32d1eff6 com.apple.CFNetwork (1085.4 - 1085.4) <5C2F4865-3ACA-38FF-980B-BDC140837F7B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff32d98000 - 0x7fff3308bffc com.apple.HIToolbox (2.1.1 - 978) <504D8DFC-5E3B-3330-AE5C-B8932C52D10C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff330d6000 - 0x7fff330dcff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff3326d000 - 0x7fff3326dfff com.apple.Cocoa (6.11 - 23) <3E9EB784-0FE5-3CDD-87F1-102E420C9D9C> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff3327b000 - 0x7fff33466ff7 com.apple.ColorSync (4.13.0 - 3390) <8E05BCEF-0EDC-39E8-A40C-0A4C0890C4DF> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff33467000 - 0x7fff33546fff com.apple.combine (1.0 - 115.10) /System/Library/Frameworks/Combine.framework/Versions/A/Combine 0x7fff33732000 - 0x7fff33bf4ff2 com.apple.audio.CoreAudio (5.0 - 5.0) <9D52ED80-A10E-3760-854B-6B62206A5E69> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff33c47000 - 0x7fff33c7effa com.apple.CoreBluetooth (1.0 - 1) <1D2A342D-A6D4-3718-B52F-88A35DED8B61> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff33c7f000 - 0x7fff34033fe7 com.apple.CoreData (120 - 950) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff34034000 - 0x7fff34131ff2 com.apple.CoreDisplay (1.0 - 107) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff34132000 - 0x7fff345acfe5 com.apple.CoreFoundation (6.9 - 1656.10) <9DBE3917-6ED1-3D82-A02F-1333D4934943> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff345ae000 - 0x7fff34c22fe0 com.apple.CoreGraphics (2.0 - 1331.0.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff34c34000 - 0x7fff34f82ff4 com.apple.CoreImage (15.0.0 - 800.5.190) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff34f83000 - 0x7fff34fe7ffc com.apple.corelocation (2373.0.2 - 2373.0.2) <66C1B173-A33D-3738-824D-AA1072D25945> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation 0x7fff35567000 - 0x7fff35567fff com.apple.CoreServices (1054.11 - 1054.11) <359FBE7C-2124-368F-AA0C-FB2EA6AE0E1E> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff35568000 - 0x7fff355eaffb com.apple.AE (812 - 812) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff355eb000 - 0x7fff358ccff7 com.apple.CoreServices.CarbonCore (1210.5 - 1210.5) <525681CA-CB06-3103-9EEF-7642A3D3D6F4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff358cd000 - 0x7fff35919ff9 com.apple.DictionaryServices (1.2 - 311) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff3591a000 - 0x7fff35922fff com.apple.CoreServices.FSEvents (1260 - 1260) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff35923000 - 0x7fff35b4dffb com.apple.LaunchServices (1054.10 - 1054.10) <64056343-83D8-3F4C-A0A2-3264C52FEBFD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff35b4e000 - 0x7fff35be6ff9 com.apple.Metadata (10.7.0 - 2044.6) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff35be7000 - 0x7fff35c14ff7 com.apple.CoreServices.OSServices (1054.10 - 1054.10) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff35c15000 - 0x7fff35c7cfff com.apple.SearchKit (1.4.1 - 1.4.1) <7E0FB7C0-E6CE-3E09-9AAE-CBC8E2E6938C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff35c7d000 - 0x7fff35ca0ffd com.apple.coreservices.SharedFileList (125 - 125) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff35fd2000 - 0x7fff3617effc com.apple.CoreText (352.0 - 623) <88D5BD51-9546-31FA-BEF1-B4697CE93BBD> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff3617f000 - 0x7fff361c3ffb com.apple.CoreVideo (1.8 - 330.0) <7F20F602-C999-34EC-8A5D-4925B2D9A6B8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff361c4000 - 0x7fff36250ff0 com.apple.framework.CoreWLAN (13.0 - 1437) <65132EC1-7A69-3FC2-9C43-E941234E6108> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff364ef000 - 0x7fff364f4ff7 com.apple.DiskArbitration (2.7 - 2.7) <5F5D98E0-9016-3BCB-B266-8374FE2A6138> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff3680a000 - 0x7fff36bcbffb com.apple.Foundation (6.9 - 1656.10) <024D926E-8253-36DE-9923-A4D35EDFBF32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff36c38000 - 0x7fff36c67ffb com.apple.GSS (4.0 - 2.0) <7D595D27-E984-362F-A7DF-71F61792F1BE> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff36d9a000 - 0x7fff36e9effc com.apple.Bluetooth (7.0.0 - 7.0.0d93) <4D94CAFD-32EC-3241-9569-176DDC49B669> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff36eff000 - 0x7fff36fa0ffb com.apple.framework.IOKit (2.0.2 - 1712) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff36fa2000 - 0x7fff36fb2ff4 com.apple.IOSurface (269.2 - 269.2) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff37024000 - 0x7fff37178ffe com.apple.ImageIO.framework (3.3.0 - 1955) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff37179000 - 0x7fff3717cfff libGIF.dylib (1955) <735C4212-2EAD-301E-B49F-A63896EA0F09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff3717d000 - 0x7fff37237fe7 libJP2.dylib (1955) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff37238000 - 0x7fff3725cfef libJPEG.dylib (1955) <67AD3CA4-B537-3A4D-9749-2F57120A4201> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff374da000 - 0x7fff374f4fe7 libPng.dylib (1955) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff374f5000 - 0x7fff374f6fff libRadiance.dylib (1955) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff374f7000 - 0x7fff37540ff3 libTIFF.dylib (1955) <89A8C750-D6E5-3AA9-AE60-746989142687> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff38932000 - 0x7fff38944ff3 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff38945000 - 0x7fff38945fff libHeimdalProxy.dylib (76) /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff39875000 - 0x7fff39931ff5 com.apple.Metal (211.30.1 - 211.30.1) /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff3994e000 - 0x7fff3998aff3 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <0F8F189E-B727-37EB-950B-635935B76682> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff3998b000 - 0x7fff39a11fe6 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <61727DA1-8D56-3C43-894D-6AEFD9750B4E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff39a12000 - 0x7fff39a36fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff39a37000 - 0x7fff39a4bff8 com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <585213B1-56A0-353E-979C-05DC6FC14F0B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff39a4c000 - 0x7fff39baaff1 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff39bab000 - 0x7fff39bf9ff8 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <41FA2235-CF9F-384F-AACA-D2D8F37F1513> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff39bfa000 - 0x7fff39bfbff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff3ab40000 - 0x7fff3ab4cffe com.apple.NetFS (6.0 - 4.0) <1FEEEE23-F7D2-365E-8305-5B642C7C2FAE> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff3ab4d000 - 0x7fff3ac90ffe com.apple.Network (1.0 - 1) /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff3d6a7000 - 0x7fff3d6ffff7 com.apple.opencl (3.4 - 3.4) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff3d700000 - 0x7fff3d71cff7 com.apple.CFOpenDirectory (10.15 - 220) <4C79E62F-6D44-3A5D-A9FF-36EFB39452F7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff3d71d000 - 0x7fff3d728fff com.apple.OpenDirectory (10.15 - 220) <3DDAB6AA-4BE1-3156-99FB-3660B4DE9264> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff3e083000 - 0x7fff3e085fff libCVMSPluginSupport.dylib (17.10.19) <67B53AF7-5102-3059-95F2-6B3161519108> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff3e086000 - 0x7fff3e08bff7 libCoreFSCache.dylib (176.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff3e08c000 - 0x7fff3e090fff libCoreVMClient.dylib (176.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff3e091000 - 0x7fff3e099ff7 libGFXShared.dylib (17.10.19) <1BC57A4D-BAC8-3F0F-A98D-25C0BED72342> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff3e09a000 - 0x7fff3e0a4fff libGL.dylib (17.10.19) <6749F32B-D1D1-35F4-B1CE-3B3229C2BD35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff3e0a5000 - 0x7fff3e0dafff libGLImage.dylib (17.10.19) <9D4315F3-2602-3C70-9E91-DDD8F5A4E53F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff3e0db000 - 0x7fff3e26dff7 libGLProgrammability.dylib (17.10.19) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff3e26e000 - 0x7fff3e2aafff libGLU.dylib (17.10.19) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff3ecda000 - 0x7fff3ece9ff7 com.apple.opengl (17.10.19 - 17.10.19) <7855C0CA-377F-3635-B77C-0424EA3FBBD8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff3ecea000 - 0x7fff3ee63ff7 GLEngine (17.10.19) <66A484FC-327A-3F29-8595-21C211C244BA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine 0x7fff3fc64000 - 0x7fff3fedeff3 com.apple.QuartzCore (1.11 - 800.0.2) <8CE65B88-CC8F-3976-B619-F473F65BF5C0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff40a33000 - 0x7fff40d73ffc com.apple.security (7.0 - 59256.0.0.120.5) <78D18E4C-F203-3F31-9666-A8906DF4EF79> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff40d74000 - 0x7fff40dfcff7 com.apple.securityfoundation (6.0 - 55236) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff40e2b000 - 0x7fff40e2fff0 com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff419ba000 - 0x7fff41a24fff com.apple.SystemConfiguration (1.19 - 1.19) <851F2827-B854-3A45-B2E4-FE2921D7EEBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff45829000 - 0x7fff458e1fe7 com.apple.APFS (1389.0.0 - 1389.0.0) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff4689d000 - 0x7fff4689eff1 com.apple.AggregateDictionary (1.0 - 1) <0EE35192-12B8-3278-9202-5907389245E2> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff46b38000 - 0x7fff46b5dff5 com.apple.AmbientDisplay (1.0 - 121) /System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/AmbientDisplay 0x7fff47183000 - 0x7fff471a7ff3 com.apple.framework.Apple80211 (13.0 - 1439.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff472d9000 - 0x7fff472e8fdf com.apple.AppleFSCompression (119 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff473d1000 - 0x7fff473e4ff4 com.apple.AppleGVACoreFramework (46 - 46) /System/Library/PrivateFrameworks/AppleGVACore.framework/Versions/A/AppleGVACore 0x7fff473e5000 - 0x7fff473f0ffa com.apple.AppleIDAuthSupport (1.0 - 1) <54B2F7F4-9942-3BAF-94F6-2AFE09338508> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff47432000 - 0x7fff4747afff com.apple.AppleJPEG (1.0 - 1) <98339E78-6FF6-38BF-A390-BA2F8B7AD00F> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff47847000 - 0x7fff47869ffb com.apple.applesauce (1.0 - 16.22) <5FDF262C-87CA-3601-ADB9-AB855E4E9E3E> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff47929000 - 0x7fff4792cfff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff479c6000 - 0x7fff479d4fff com.apple.AssertionServices (1.0 - 167.0.0.120.1) /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff484af000 - 0x7fff486e1ffb com.apple.audio.AudioToolboxCore (1.0 - 1088.4) <9249590B-7BFC-320F-A329-4CB1A14F7534> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff486e2000 - 0x7fff487efff4 com.apple.AuthKit (1.0 - 1) /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff4899e000 - 0x7fff489a7ff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <1034E756-8BB0-3F2A-B181-25C57D62AF45> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff489a8000 - 0x7fff48a48ff2 com.apple.backup.framework (1.11 - 1275.5) <381CB976-4391-3171-80C1-6F9FF8F1A879> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff48a49000 - 0x7fff48ac8ff3 com.apple.BaseBoard (447.1 - 447.1) <9929C59F-EEA4-397C-8BE0-6AE5D644EFAC> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff48ae7000 - 0x7fff48aedffe com.apple.BezelServicesFW (335 - 335) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices 0x7fff48bcc000 - 0x7fff48c08ff7 com.apple.bom (14.0 - 219) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff4a6a6000 - 0x7fff4a6afff3 com.apple.CommonAuth (4.0 - 2.0) <96A5D529-97CD-36F2-BB58-61E3657C490E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff4a6c3000 - 0x7fff4a6daff1 com.apple.commonutilities (8.0 - 900) <6A746147-080C-3853-9198-F82F62054500> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff4b1d0000 - 0x7fff4b1efff1 com.apple.analyticsd (1.0 - 1) <36E30DBD-6AF7-3B48-9A4B-B3E1FABABAC3> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff4b2ee000 - 0x7fff4b359ffa com.apple.corebrightness (1.0 - 1) <7B64319C-ED2E-3E0A-9AFD-96A7DD5C4FA4> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff4b71f000 - 0x7fff4b72fff7 com.apple.CoreEmoji (1.0 - 96) /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4bd5a000 - 0x7fff4bdc4ff8 com.apple.CoreNLP (1.0 - 202) <25325657-4C21-3B85-9C6E-492C2342A116> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff4c204000 - 0x7fff4c20cff8 com.apple.CorePhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff4c932000 - 0x7fff4c955ff7 com.apple.CoreSVG (1.0 - 125) /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff4c956000 - 0x7fff4c989fff com.apple.CoreServicesInternal (436.5 - 436.5) <07C48AE8-34AB-3D70-ABA6-C9F188B45A98> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff4c98a000 - 0x7fff4c9b5ff0 com.apple.CSStore (1054.10 - 1054.10) /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff4cfa2000 - 0x7fff4d0cbff3 com.apple.coreui (2.1 - 574.2) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff4d0cc000 - 0x7fff4d268ff6 com.apple.CoreUtils (5.9 - 590.16) <976CADC3-8BAA-3E16-9C93-42CB8C65DAB3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff4d39a000 - 0x7fff4d3adff1 com.apple.CrashReporterSupport (10.13 - 15003) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff4d5fc000 - 0x7fff4d60bff0 com.apple.framework.DFRFoundation (1.0 - 225) <95BE7A0A-D1FE-3B33-A2DC-87D132AEC7CD> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff4d60c000 - 0x7fff4d610fff com.apple.DSExternalDisplay (3.1 - 380) <58F60C89-9BA4-3920-936A-7AB91E7C442D> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff4d679000 - 0x7fff4d6f4ff0 com.apple.datadetectorscore (8.0 - 655) <682E1EBC-86D8-322B-986E-8CC9DF6460EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff4d77f000 - 0x7fff4d8f2ff6 com.apple.desktopservices (1.14 - 1261) <5D022C50-D387-3994-A416-8C7E0ED0FE73> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff4dbb4000 - 0x7fff4dbb8ff1 com.apple.DisplayServicesFW (3.1 - 380) /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff4f06a000 - 0x7fff4f485ff1 com.apple.vision.FaceCore (4.3.0 - 4.3.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff4fab4000 - 0x7fff4fbebffc libFontParser.dylib (264) <268BFA92-17C1-3A44-8660-40F6171CEDB2> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff4fc85000 - 0x7fff4fc92ff4 libhvf.dylib (264) /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff53150000 - 0x7fff53151fff libmetal_timestamp.dylib (902.9.41) <66E9FF1E-73B5-3757-8C68-02DECBD059A1> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib 0x7fff547ec000 - 0x7fff547f7ff7 libGPUSupportMercury.dylib (17.10.19) /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib 0x7fff547f8000 - 0x7fff547fdff7 com.apple.GPUWrangler (4.1.30 - 4.1.30) <8A355D37-5DAD-355C-B706-8856E9201505> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff54c19000 - 0x7fff54c30ff3 com.apple.geokit (2.2 - 2.2) <7E9E378C-1245-311D-A7ED-4DF64E7AB5DC> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit 0x7fff54c31000 - 0x7fff55b64ffd com.apple.GeoServices (1.0 - 1578.20.6.1.3) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices 0x7fff55c91000 - 0x7fff55c9fffb com.apple.GraphVisualizer (1.0 - 100.1) /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff55cbd000 - 0x7fff55d00ff7 com.apple.HDRProcessing (1.41.7 - 1.41.7) <51F79589-FFAE-3065-9837-94E0804C139A> /System/Library/PrivateFrameworks/HDRProcessing.framework/Versions/A/HDRProcessing 0x7fff55d01000 - 0x7fff55d0dff5 com.apple.HID (1.0 - 1) <1E128C74-3F1C-34F9-9188-D9503936C85B> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID 0x7fff55d12000 - 0x7fff55d18ff3 com.apple.HIDDisplay (1.0 - 1) <88ABC71D-67F7-3A82-ADE9-140416E23D8D> /System/Library/PrivateFrameworks/HIDDisplay.framework/Versions/A/HIDDisplay 0x7fff55e27000 - 0x7fff55e9aff4 com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff57ea7000 - 0x7fff57eb0ffe com.apple.IOAccelMemoryInfo (1.0 - 1) <41C0350E-1475-38CD-BDCF-A0E1E93E438E> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff57eb1000 - 0x7fff57eb9ff5 com.apple.IOAccelerator (438.1.9 - 438.1.9) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff57ebc000 - 0x7fff57ed2ff7 com.apple.IOPresentment (1.0 - 37) <2CFF31EB-C4F1-361A-B716-E6DBB7D3112C> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff5823c000 - 0x7fff58283ff3 com.apple.IconServices (424.5 - 424.5) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff58436000 - 0x7fff5843cff4 com.apple.InternationalSupport (1.0 - 39) /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff58679000 - 0x7fff58699ff6 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff587f0000 - 0x7fff588b4ffd com.apple.LanguageModeling (1.0 - 209) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff588b5000 - 0x7fff58902ff7 com.apple.Lexicon-framework (1.0 - 67) /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff58909000 - 0x7fff5890dff6 com.apple.LinguisticData (1.0 - 319) <44794542-F3CA-3662-950A-7B1616BCB370> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff58933000 - 0x7fff58957ff6 com.apple.locationsupport (2373.0.2 - 2373.0.2) <03E47261-116F-3313-869C-586F10891181> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport 0x7fff59b6e000 - 0x7fff59bb8ff4 com.apple.spotlight.metadata.utilities (1.0 - 2044.6) <73084821-0249-3039-AE34-49213D035D26> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff59bb9000 - 0x7fff59c85ffb com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff59e9d000 - 0x7fff59ebaff4 com.apple.MobileKeyBag (2.0 - 1.0) <4015DB43-D688-3744-B13A-9C98D12B71FC> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff5a132000 - 0x7fff5a15fff7 com.apple.MultitouchSupport.framework (3000.24 - 3000.24) <7779CA88-B57B-3F29-98E6-B54320BC355C> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5a5c4000 - 0x7fff5a5cefff com.apple.NetAuth (6.2 - 6.2) <8D56481A-A648-3086-8261-67489D12C8AC> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5aee2000 - 0x7fff5af2eff7 com.apple.OTSVG (1.0 - 623) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff5c062000 - 0x7fff5c06dffe com.apple.PerformanceAnalysis (1.236 - 236) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff5c06e000 - 0x7fff5c096ff0 com.apple.persistentconnection (1.0 - 1.0) /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff5e855000 - 0x7fff5e870ff5 com.apple.ProtocolBuffer (1 - 270) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff5ec93000 - 0x7fff5ecbcff9 com.apple.RemoteViewServices (2.0 - 147) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff5ee15000 - 0x7fff5ee51ff0 com.apple.RunningBoardServices (1.0 - 167.0.0.120.1) /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff60838000 - 0x7fff60952ffc com.apple.Sharing (1405 - 1405) <373E9992-84C8-3A7A-906C-04EFED5FF795> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff611b9000 - 0x7fff614a3ff5 com.apple.SkyLight (1.600.0 - 420) <0A91929D-492B-3431-A003-5466FBC92B00> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff61ce5000 - 0x7fff61cf2ffb com.apple.SpeechRecognitionCore (6.0.56 - 6.0.56) <9DC202CD-BFBF-3E57-8DA8-D4F16F314927> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff627a9000 - 0x7fff627b9ffb com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff62c8b000 - 0x7fff62d52ff4 com.apple.TextureIO (3.10.9 - 3.10.9) <3FA61B9A-A001-3CCD-885F-2093C0268A86> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff642d0000 - 0x7fff64520ff4 com.apple.UIFoundation (1.0 - 625) <3C955366-5B75-3C03-9ECB-3300CE1918C7> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff66123000 - 0x7fff66124fff com.apple.WatchdogClient.framework (1.0 - 63) <6F6731B5-ED13-3740-9066-EC593CB607DA> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff66c6b000 - 0x7fff66c6effa com.apple.dt.XCTTargetBootstrap (1.0 - 14761.2) <322BFFDD-5443-3F5B-8F48-2C0A38A3F5FF> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff66ce6000 - 0x7fff66cf3ff1 com.apple.audio.caulk (1.0 - 23) /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff673ba000 - 0x7fff673bcff3 com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff676c5000 - 0x7fff676faff2 libAudioToolboxUtility.dylib (1088.4) <4E25588E-5C01-3D7B-B7BF-F1CDF1F603F5> /usr/lib/libAudioToolboxUtility.dylib 0x7fff67701000 - 0x7fff67736ff7 libCRFSuite.dylib (48) /usr/lib/libCRFSuite.dylib 0x7fff67739000 - 0x7fff67743ff3 libChineseTokenizer.dylib (34) <327CE154-12B7-394E-A50D-9842496304D5> /usr/lib/libChineseTokenizer.dylib 0x7fff677d0000 - 0x7fff677d2fff libDiagnosticMessagesClient.dylib (111) <33BBFD49-C30A-3E59-9478-771480359447> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff6780c000 - 0x7fff679b7ffb libFosl_dynamic.dylib (100.3) /usr/lib/libFosl_dynamic.dylib 0x7fff679df000 - 0x7fff679e5ff3 libIOReport.dylib (54) /usr/lib/libIOReport.dylib 0x7fff679e6000 - 0x7fff679edfff libMatch.1.dylib (36) /usr/lib/libMatch.1.dylib 0x7fff67a1b000 - 0x7fff67a3afff libMobileGestalt.dylib (809) <51602439-5492-3585-B8B7-6CBCD932C14F> /usr/lib/libMobileGestalt.dylib 0x7fff67ba1000 - 0x7fff67ba2ff3 libSystem.B.dylib (1279) /usr/lib/libSystem.B.dylib 0x7fff67c32000 - 0x7fff67c33fff libThaiTokenizer.dylib (3) /usr/lib/libThaiTokenizer.dylib 0x7fff67c4b000 - 0x7fff67c61ff7 libapple_nghttp2.dylib (1.38) <073E8F9B-BC66-3049-9F34-7C6773F24B70> /usr/lib/libapple_nghttp2.dylib 0x7fff67c96000 - 0x7fff67d08fff libarchive.2.dylib (70) <19AF6AD4-EB29-37D7-917F-81EFD9A81AF5> /usr/lib/libarchive.2.dylib 0x7fff67d09000 - 0x7fff67d9ffc5 libate.dylib (2.0.8) <4297DB65-2AD5-3219-81AD-815C35C8EAAC> /usr/lib/libate.dylib 0x7fff67da3000 - 0x7fff67da3ff3 libauto.dylib (187) <4A9ED216-0ED2-3238-BD67-AB93EE0122C6> /usr/lib/libauto.dylib 0x7fff67e5e000 - 0x7fff67e6effb libbsm.0.dylib (58) <196CA992-6221-3986-9ABE-40274CDBB032> /usr/lib/libbsm.0.dylib 0x7fff67e6f000 - 0x7fff67e7bfff libbz2.1.0.dylib (44) <039D615F-FD9F-3FA4-B2F0-696A67C63593> /usr/lib/libbz2.1.0.dylib 0x7fff67e7c000 - 0x7fff67ecffff libc++.1.dylib (800.6) <0F0A0B70-F458-3F78-B413-F45E17FD8D08> /usr/lib/libc++.1.dylib 0x7fff67ed0000 - 0x7fff67ee4fff libc++abi.dylib (800.7) <7AB53CFA-5D5F-34D8-8B09-DF18DFBE0853> /usr/lib/libc++abi.dylib 0x7fff67ee5000 - 0x7fff67ee5ffb libcharset.1.dylib (59) /usr/lib/libcharset.1.dylib 0x7fff67ee6000 - 0x7fff67ef7ffb libcmph.dylib (8) <1AB23232-D06C-37AE-BDDF-45570535BB1F> /usr/lib/libcmph.dylib 0x7fff67ef8000 - 0x7fff67f0ffe7 libcompression.dylib (83) <85A294FF-0C8F-3139-BA0D-9D61EDE94D35> /usr/lib/libcompression.dylib 0x7fff681bd000 - 0x7fff681d3fff libcoretls.dylib (167) <43CF7946-C1A3-3028-8DDD-8297E4FEBE8F> /usr/lib/libcoretls.dylib 0x7fff681d4000 - 0x7fff681d5ffb libcoretls_cfhelpers.dylib (167) <50C0F0B6-559D-322B-8825-6D94D14919EC> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff68791000 - 0x7fff687f0fff libcups.2.dylib (481) <13129C45-7707-37C5-8AFF-CA936A0E1104> /usr/lib/libcups.2.dylib 0x7fff688fc000 - 0x7fff688fcff3 libenergytrace.dylib (21) <407F53F7-631A-39A6-9DF1-76FCDC4A6E94> /usr/lib/libenergytrace.dylib 0x7fff688fd000 - 0x7fff68916ff7 libexpat.1.dylib (19) /usr/lib/libexpat.1.dylib 0x7fff68924000 - 0x7fff68925fff libfakelink.dylib (138) /usr/lib/libfakelink.dylib 0x7fff68934000 - 0x7fff68939fff libgermantok.dylib (24) /usr/lib/libgermantok.dylib 0x7fff6893a000 - 0x7fff6893efff libheimdal-asn1.dylib (560) /usr/lib/libheimdal-asn1.dylib 0x7fff6893f000 - 0x7fff68a2fff7 libiconv.2.dylib (59) /usr/lib/libiconv.2.dylib 0x7fff68a30000 - 0x7fff68c87fff libicucore.A.dylib (64213.0.1) <560AAC02-7BD9-36EF-859B-D61F721DAE54> /usr/lib/libicucore.A.dylib 0x7fff68ca1000 - 0x7fff68ca2fff liblangid.dylib (133) <4F8AD1D2-E2E6-375B-AD7B-2B61B1FDB244> /usr/lib/liblangid.dylib 0x7fff68ca3000 - 0x7fff68cbbffb liblzma.5.dylib (16) <5765570F-BB5C-38C3-993A-BBC3BE6F10B3> /usr/lib/liblzma.5.dylib 0x7fff68cd2000 - 0x7fff68d7afff libmecab.dylib (862) <9A5C77F9-E043-36BD-8C53-2CB4EBD24EAF> /usr/lib/libmecab.dylib 0x7fff68d7b000 - 0x7fff68fd4ffe libmecabra.dylib (862) <310B1E42-0940-3207-BCDB-F5C24C1156AA> /usr/lib/libmecabra.dylib 0x7fff69329000 - 0x7fff69358ff7 libncurses.5.4.dylib (57) <0C185166-4831-3AED-A268-326CAB518A1A> /usr/lib/libncurses.5.4.dylib 0x7fff69487000 - 0x7fff698eeff8 libnetwork.dylib (1844.0.0.120.1) <08F60F8C-9EE0-388D-A56A-F1BE42EA94BC> /usr/lib/libnetwork.dylib 0x7fff6998c000 - 0x7fff699bdff6 libobjc.A.dylib (773.1) /usr/lib/libobjc.A.dylib 0x7fff699cf000 - 0x7fff699d3fff libpam.2.dylib (25) <555D029A-CF28-38E7-AD14-5B74122C3D6D> /usr/lib/libpam.2.dylib 0x7fff699d6000 - 0x7fff69a09fff libpcap.A.dylib (88) <10C25E70-2C1D-357D-AB3F-4854AE885951> /usr/lib/libpcap.A.dylib 0x7fff69a8b000 - 0x7fff69aa3ff7 libresolv.9.dylib (67) <8372C6F6-A130-3857-BF3E-50B146CD9D18> /usr/lib/libresolv.9.dylib 0x7fff69aa5000 - 0x7fff69ae7fff libsandbox.1.dylib (1183.0.0.121.1) <2852A07C-5CB6-3AA6-84D6-7785144ACCF5> /usr/lib/libsandbox.1.dylib 0x7fff69afb000 - 0x7fff69afcff7 libspindump.dylib (276) <9E8DFC48-1797-3187-9C5C-376310065769> /usr/lib/libspindump.dylib 0x7fff69afd000 - 0x7fff69cebfef libsqlite3.dylib (304.1) <9D25B4C2-07A4-3526-90F2-B955CEA1EE11> /usr/lib/libsqlite3.dylib 0x7fff69f39000 - 0x7fff69f3cffb libutil.dylib (57) <78261392-A683-3645-8A3A-CA290233410B> /usr/lib/libutil.dylib 0x7fff69f3d000 - 0x7fff69f4aff7 libxar.1.dylib (418) /usr/lib/libxar.1.dylib 0x7fff69f4f000 - 0x7fff6a031ff7 libxml2.2.dylib (32.10) <9184FE33-133B-308E-A179-DA8334318182> /usr/lib/libxml2.2.dylib 0x7fff6a035000 - 0x7fff6a05dfff libxslt.1.dylib (16.4) /usr/lib/libxslt.1.dylib 0x7fff6a05e000 - 0x7fff6a070fff libz.1.dylib (76) /usr/lib/libz.1.dylib 0x7fff6a162000 - 0x7fff6a4f2ff6 libswiftCore.dylib (5.1 - 1100.8.42) <894E9DF0-7936-306A-B44F-8A203A0F9106> /usr/lib/swift/libswiftCore.dylib 0x7fff6a506000 - 0x7fff6a508fff libswiftCoreFoundation.dylib (??? - ???) <3D6CE619-2398-3A6B-8A87-DD2A726E6F2A> /usr/lib/swift/libswiftCoreFoundation.dylib 0x7fff6a509000 - 0x7fff6a517fff libswiftCoreGraphics.dylib (??? - ???) <2EACDB3B-20C3-30B8-9CA0-17D33926F9B4> /usr/lib/swift/libswiftCoreGraphics.dylib 0x7fff6a518000 - 0x7fff6a51bffb libswiftCoreImage.dylib (??? - ???) /usr/lib/swift/libswiftCoreImage.dylib 0x7fff6a716000 - 0x7fff6a71cffb libswiftDarwin.dylib (??? - ???) /usr/lib/swift/libswiftDarwin.dylib 0x7fff6a71d000 - 0x7fff6a736ffc libswiftDispatch.dylib (??? - ???) <2599532B-6354-34FB-96AF-5785A15AE6B6> /usr/lib/swift/libswiftDispatch.dylib 0x7fff6a737000 - 0x7fff6a8dbff8 libswiftFoundation.dylib (??? - ???) <83E5E394-0CDA-329D-9569-B72ED8E9BF77> /usr/lib/swift/libswiftFoundation.dylib 0x7fff6a8e7000 - 0x7fff6a8e9ff3 libswiftIOKit.dylib (??? - ???) <8853511B-ACCE-311F-A221-E7F535D46D08> /usr/lib/swift/libswiftIOKit.dylib 0x7fff6a8fd000 - 0x7fff6a90408f libswiftMetal.dylib (??? - ???) <591BA57F-1184-3171-979F-1110D58279F6> /usr/lib/swift/libswiftMetal.dylib 0x7fff6a97b000 - 0x7fff6a97effd libswiftObjectiveC.dylib (??? - ???) <36F28674-D452-3E88-AE42-D4A21B2C57FE> /usr/lib/swift/libswiftObjectiveC.dylib 0x7fff6a990000 - 0x7fff6a995fb7 libswiftQuartzCore.dylib (??? - ???) /usr/lib/swift/libswiftQuartzCore.dylib 0x7fff6aad8000 - 0x7fff6aadafff libswiftXPC.dylib (??? - ???) <423C908B-D0BB-3112-BE91-DCC71FF089C6> /usr/lib/swift/libswiftXPC.dylib 0x7fff6aadb000 - 0x7fff6aae1fe7 libswiftos.dylib (??? - ???) <6956B9B9-A1E3-39D0-92E9-0CD31822FFE4> /usr/lib/swift/libswiftos.dylib 0x7fff6ab03000 - 0x7fff6ab08ff7 libcache.dylib (83) <6BB70B87-C454-32CE-A7C7-40029EA0A989> /usr/lib/system/libcache.dylib 0x7fff6ab09000 - 0x7fff6ab14ff7 libcommonCrypto.dylib (60157) /usr/lib/system/libcommonCrypto.dylib 0x7fff6ab15000 - 0x7fff6ab1cfff libcompiler_rt.dylib (101.1) <670BFA40-896E-3641-8B44-2C3F7794AC37> /usr/lib/system/libcompiler_rt.dylib 0x7fff6ab1d000 - 0x7fff6ab26ff7 libcopyfile.dylib (166) <4473B855-7351-3A22-8445-A106BABDE2CE> /usr/lib/system/libcopyfile.dylib 0x7fff6ab27000 - 0x7fff6abbefc7 libcorecrypto.dylib (837) <8EF936FD-7FCB-3ABB-AE1A-4C67BAAD12E5> /usr/lib/system/libcorecrypto.dylib 0x7fff6acd5000 - 0x7fff6ad16ff8 libdispatch.dylib (1170.0.0.0.1) <5D3E85BA-496E-311A-A4B9-D5FE755B4148> /usr/lib/system/libdispatch.dylib 0x7fff6ad17000 - 0x7fff6ad4cff7 libdyld.dylib (727) /usr/lib/system/libdyld.dylib 0x7fff6ad4d000 - 0x7fff6ad4dffb libkeymgr.dylib (30) <4730879B-FAC0-3D72-9AEF-FAB6E25EF77F> /usr/lib/system/libkeymgr.dylib 0x7fff6ad4e000 - 0x7fff6ad5aff7 libkxld.dylib (6110.0.0.121.5) <5DAC58F0-2268-3778-8352-3AEFE8051072> /usr/lib/system/libkxld.dylib 0x7fff6ad5b000 - 0x7fff6ad5bfff liblaunch.dylib (1706.0.0.120.1) <27AF6281-5429-39DD-B4E2-AE95F994756C> /usr/lib/system/liblaunch.dylib 0x7fff6ad5c000 - 0x7fff6ad61ff7 libmacho.dylib (947) /usr/lib/system/libmacho.dylib 0x7fff6ad62000 - 0x7fff6ad64ffb libquarantine.dylib (108) /usr/lib/system/libquarantine.dylib 0x7fff6ad65000 - 0x7fff6ad66ff7 libremovefile.dylib (47) <2471C8CA-C0B6-379B-A254-E9A9FEDBD16E> /usr/lib/system/libremovefile.dylib 0x7fff6ad67000 - 0x7fff6ad7effb libsystem_asl.dylib (375) <6DCCCF11-0ED9-3A7E-8E92-239633822070> /usr/lib/system/libsystem_asl.dylib 0x7fff6ad7f000 - 0x7fff6ad7ffff libsystem_blocks.dylib (74) /usr/lib/system/libsystem_blocks.dylib 0x7fff6ad80000 - 0x7fff6ae07fff libsystem_c.dylib (1346) <99719134-AAF7-3D8D-B85F-627D036DEF51> /usr/lib/system/libsystem_c.dylib 0x7fff6ae08000 - 0x7fff6ae0bfff libsystem_configuration.dylib (1054) /usr/lib/system/libsystem_configuration.dylib 0x7fff6ae0c000 - 0x7fff6ae0fff7 libsystem_coreservices.dylib (110) <38070ABE-3AAF-332E-942B-AA868A696099> /usr/lib/system/libsystem_coreservices.dylib 0x7fff6ae10000 - 0x7fff6ae17ff7 libsystem_darwin.dylib (1346) <8850250F-6EFC-3E67-AC86-CDF455EA6E66> /usr/lib/system/libsystem_darwin.dylib 0x7fff6ae18000 - 0x7fff6ae1fffb libsystem_dnssd.dylib (1075.120.1) /usr/lib/system/libsystem_dnssd.dylib 0x7fff6ae20000 - 0x7fff6ae21ffb libsystem_featureflags.dylib (17) <0793ABFB-5B05-3446-A9F0-7A5F0E48EF7C> /usr/lib/system/libsystem_featureflags.dylib 0x7fff6ae22000 - 0x7fff6ae6fff7 libsystem_info.dylib (537) /usr/lib/system/libsystem_info.dylib 0x7fff6ae70000 - 0x7fff6ae9cff7 libsystem_kernel.dylib (6110.0.0.121.5) <49272A75-4403-3FC3-9BA6-9963F64FC89F> /usr/lib/system/libsystem_kernel.dylib 0x7fff6ae9d000 - 0x7fff6aee4ff7 libsystem_m.dylib (3178) /usr/lib/system/libsystem_m.dylib 0x7fff6aee5000 - 0x7fff6af0cfff libsystem_malloc.dylib (281) /usr/lib/system/libsystem_malloc.dylib 0x7fff6af0d000 - 0x7fff6af1aff3 libsystem_networkextension.dylib (1060) <5EA62432-5AA4-3E97-A7D4-8620203D4D7B> /usr/lib/system/libsystem_networkextension.dylib 0x7fff6af1b000 - 0x7fff6af24fff libsystem_notify.dylib (241) /usr/lib/system/libsystem_notify.dylib 0x7fff6af25000 - 0x7fff6af2efe7 libsystem_platform.dylib (218) /usr/lib/system/libsystem_platform.dylib 0x7fff6af2f000 - 0x7fff6af39fff libsystem_pthread.dylib (410) /usr/lib/system/libsystem_pthread.dylib 0x7fff6af3a000 - 0x7fff6af3effb libsystem_sandbox.dylib (1183.0.0.121.1) <8E878E50-41C6-35E2-9180-FAFC495DC2FC> /usr/lib/system/libsystem_sandbox.dylib 0x7fff6af3f000 - 0x7fff6af41ff7 libsystem_secinit.dylib (56) <60DD67AA-2F3E-3227-8F93-0F87ED4E0E87> /usr/lib/system/libsystem_secinit.dylib 0x7fff6af42000 - 0x7fff6af49ffb libsystem_symptoms.dylib (1212.0.0.120.3) <2455120F-58A6-3484-86CF-9F4A54645C38> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6af4a000 - 0x7fff6af60ff2 libsystem_trace.dylib (1135) <8AE584BE-609A-3F08-BE8B-06B03FFCEDD0> /usr/lib/system/libsystem_trace.dylib 0x7fff6af62000 - 0x7fff6af67ffb libunwind.dylib (35.4) <5B237183-5F54-31BF-A0F4-394222B7CA1D> /usr/lib/system/libunwind.dylib 0x7fff6af68000 - 0x7fff6af9cff6 libxpc.dylib (1706.0.0.120.1) /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 93 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 54728 thread_create: 8 thread_set_state: 75 VM Region Summary: ReadOnly portion of Libraries: Total=566.5M resident=0K(0%) swapped_out_or_unallocated=566.5M(100%) Writable regions: Total=2.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.6G(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Activity Tracing 256K 1 CG backing stores 7828K 75 CG backing stores (reserved) 2320K 4 reserved VM address space (unallocated) CG framebuffers 1.3G 12 CG framebuffers (reserved) 603.1M 10 reserved VM address space (unallocated) CG image 3072K 24 CoreAnimation 500.1M 628 CoreData Object IDs 4100K 2 CoreGraphics 4K 1 Dispatch continuations 24.0M 1 Foundation 4K 1 Kernel Alloc Once 8K 1 MALLOC 228.0M 2314 MALLOC guard page 32K 8 Mach message (reserved) 12K 1 reserved VM address space (unallocated) SQLite page cache 64K 1 STACK GUARD 56.0M 12 Stack 13.6M 12 VM_ALLOCATE 3204K 253 VM_ALLOCATE (reserved) 1320K 3 reserved VM address space (unallocated) __CGSERVER 4K 1 __DATA 65.5M 295 __DATA_CONST 317K 19 __FONT_DATA 4K 1 __GLSLBUILTINS 5176K 1 __LINKEDIT 352.3M 8 __OBJC_RO 31.4M 1 __OBJC_RW 1712K 1 __SLSERVER 4K 1 __TEXT 214.2M 283 __UNICODE 564K 1 mapped file 41.9M 13 shared memory 304K 24 =========== ======= ======= TOTAL 3.4G 4013 TOTAL, minus reserved VM space 2.8G 4013 ```
koekeishiya commented 5 years ago

The user space entry to trigger said function in the WindowServer is _SLSSetWindowListAlpha and is unchanged from Mojave 10.14.5 and Catalina Beta 2. This is likely a regression by Apple (it crashes deep inside the WindowServer implementation).

dominiklohmann commented 5 years ago

I think a regression here is likely. As I mentioned above, in beta 1 opacity was not working at all, so they're definitely changing something up here.

dominiklohmann commented 5 years ago

Public beta is out. There's no new dev beta out so it's probably the same build as beta 2. If you're reading this, do yourself a favour and don't make this your daily driver yet if you use Photos or iCloud Drive.

dominiklohmann commented 5 years ago

Dev Beta 3 (Public Beta 2?) is out.

If anyone else has trouble installing, Apple re-released this update a few hours ago. If you already downloaded the old files that were not working on computers with a T2 chip because of a BridgeOS version mismatch, delete them manually in /Library/Updates and download again.

The scripting addition is broken again. Files for reverse engineering are attached below.

Dock.app.zip SkyLight.framework.zip

koekeishiya commented 5 years ago

updated for macOS Catalina Dev 3.

dominiklohmann commented 5 years ago

Another note regarding the read-only system container:

The following works when SIP is disabled to make it writable. Just gotta run it from a LaunchDaemon if you want to modify /System.

sudo mount -uw /

This is not particularly relevant to yabai now that the path is different, but should someone get the old scripting addition stuck from updating to Mojave -> Catalina Dev Beta 1 -> Catalina Dev Beta 2+, this is a way to remove it.

dominiklohmann commented 5 years ago

macOS Catalina 10.15 beta 4 (19A512f) is out. It's safe to assume this will be out as public beta 3 tomorrow or so.

This beta required a full reinstall, no diff/upgrade was provided.

Scripting addition checklist: ~Everything works for once!~ Edit: Almost everything works for once!

Here's SkyLight.framework and Dock.app, although you likely don't need them.

What does not work still, however, is the window title. Yabai still only gets empty strings. We might have to go through the AX API here.

dominiklohmann commented 5 years ago

Seems like notifications are now disabled by default for some apps. This switch was disabled by default for me after upgrading, with only some apps prompting whether they were allowed to send notifications.

image

Edit: Speaking of notifications... this needs a version bump.

Screen Shot 2019-07-16 at 21 15 57
koekeishiya commented 5 years ago

You should only be seeing that message if the scripting-addition responds that some of it pattern matching has failed.

Edit: If yo run yabai in verbose mode it will log the version and the attributes which can be used to detect which one is failing. Alternatively check the logs printed in console for the Dock when the scripting addition is loaded.

dominiklohmann commented 5 years ago

It's space --create that fails. Erroneously checked only destroy apparently. Updated the above post.

koekeishiya commented 5 years ago

Fixed.

dominiklohmann commented 5 years ago

~Nope.~ Fixed it.

@koekeishiya I needed to uninstall manually before installing the SA. Wasn't this changed just recently?

koekeishiya commented 5 years ago

Tested just now, works for me: https://github.com/koekeishiya/yabai/blob/master/src/osax/sa.m#L272

dominiklohmann commented 5 years ago

~Wrote down a note to test this again next time the SA is updated.~ Figured the SA issue out. You forgot to bump the version and my update script uses --check-sa, which is why it did not work as intended.

I have also had this crash a few times now in Catalina, ever since beta 3. Happens very rarely, and I'm not sure what triggers it:

A few minutes ago on beta 4 (16.07.19 22:53) ``` Process: yabai [4277] Path: /usr/local/opt/yabai/bin/yabai Identifier: yabai Version: 0 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: yabai [4277] User ID: 501 Date/Time: 2019-07-16 22:52:55.006 +0200 OS Version: Mac OS X 10.15 (19A512f) Report Version: 12 Bridge OS Version: 4.0 (17P50507f) Anonymous UUID: 7754B96D-2B03-57AE-9A3B-249F859121FE Time Awake Since Boot: 1800 seconds System Integrity Protection: disabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00007fff00000000 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [4277] VM Regions Near 0x7fff00000000: Stack 00007ffee55dd000-00007ffee5ddd000 [ 8192K] rw-/rwx SM=ALI thread 0 --> Submap 00007fff00000000-00007fff80000000 [ 2.0G] r--/rwx SM=SHM machine-wide VM submap unused shlib __TEXT 00007fff2ddcb000-00007fff36719000 [137.3M] r-x/r-x SM=COW system shared lib __TEXT not used by this process Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 ??? 0x00007fff00000000 0 + 140733193388032 1 com.apple.SkyLight 0x00007fff68237ae6 processEventTapData(void*, unsigned int, unsigned int, unsigned int, unsigned char*, unsigned int) + 709 2 com.apple.SkyLight 0x00007fff6839740f _XPostEventTapData + 277 3 com.apple.SkyLight 0x00007fff682377c3 eventTapMessageHandler(__CFMachPort*, void*, long, void*) + 147 4 com.apple.CoreFoundation 0x00007fff3a909503 __CFMachPortPerform + 250 5 com.apple.CoreFoundation 0x00007fff3a9093fd __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41 6 com.apple.CoreFoundation 0x00007fff3a90934d __CFRunLoopDoSource1 + 541 7 com.apple.CoreFoundation 0x00007fff3a8f167a __CFRunLoopRun + 2612 8 com.apple.CoreFoundation 0x00007fff3a8f09c1 CFRunLoopRunSpecific + 499 9 com.apple.CoreFoundation 0x00007fff3a8f0798 CFRunLoopRun + 40 10 yabai 0x0000000109e470a8 main + 2216 11 libdyld.dylib 0x00007fff71dcec35 start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff71f1b51a __accept + 10 1 yabai 0x0000000109e2898c socket_connection_handler + 44 2 libsystem_pthread.dylib 0x00007fff71fdacce _pthread_start + 125 3 libsystem_pthread.dylib 0x00007fff71fd772b thread_start + 15 Thread 2: 0 libsystem_kernel.dylib 0x00007fff71f37dae sem_wait + 10 1 yabai 0x0000000109e2a9b9 event_loop_run + 169 2 libsystem_pthread.dylib 0x00007fff71fdacce _pthread_start + 125 3 libsystem_pthread.dylib 0x00007fff71fd772b thread_start + 15 Thread 3: 0 libsystem_pthread.dylib 0x00007fff71fd7708 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x00007fff71fd7708 start_wqthread + 0 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x3c11425205b40097 rbx: 0x00007fcfa7205760 rcx: 0x0000000000000000 rdx: 0xffffffffffffffd0 rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x00007ffee5dd2a50 rsp: 0x00007ffee5dd2a40 r8: 0x00000000fa7202d9 r9: 0x00000000fa7202df r10: 0x0000000081ffffff r11: 0x00007fcfa7207300 r12: 0x00007fcfa7435590 r13: 0x0000000000000158 r14: 0x00007fcfa7434620 r15: 0x00007ffee5ddbea8 rip: 0x00007fff00000000 rfl: 0x0000000000010206 cr2: 0x00007fff00000000 Logical CPU: 2 Error Code: 0x00000014 (no mapping for user instruction write) Trap Number: 14 Binary Images: 0x109e23000 - 0x109e51ff3 +yabai (0) /usr/local/opt/yabai/bin/yabai 0x1125c1000 - 0x11264f81f dyld (730) <6DBA1559-EA26-388D-BFFA-D0447ACC6C16> /usr/lib/dyld 0x7fff36719000 - 0x7fff36719fff com.apple.Accelerate (1.11 - Accelerate 1.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff3671a000 - 0x7fff36730fe7 libCGInterfaces.dylib (524) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff36731000 - 0x7fff36d9cfcf com.apple.vImage (8.1 - 524) <6280EB56-3A96-318B-82D1-F41A9D2D3B59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff36d9d000 - 0x7fff37005fff libBLAS.dylib (1303) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff37006000 - 0x7fff372dbfef libBNNS.dylib (139) <7F1A9494-3996-3B3D-821E-3A6041B3382D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff372dd000 - 0x7fff37682fff libLAPACK.dylib (1303) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff37683000 - 0x7fff37698ff8 libLinearAlgebra.dylib (1303) <93302692-D428-3263-AE6C-13864E6BCA88> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff37699000 - 0x7fff3769eff3 libQuadrature.dylib (7) <2F398884-5DC3-35C4-904D-C6C478F532F6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff3769f000 - 0x7fff3770ffff libSparse.dylib (103) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff37710000 - 0x7fff37722fef libSparseBLAS.dylib (1303) <6CBB78D0-FC14-341F-B045-37D29F43F074> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff37723000 - 0x7fff378f9ff3 libvDSP.dylib (733.0.0.0.1) <7BED75C8-9B19-34CB-9F5F-A2461ED76B80> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff378fa000 - 0x7fff379b5fdb libvMisc.dylib (733.0.0.0.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff379b6000 - 0x7fff379b6fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff379b7000 - 0x7fff37a12ff9 com.apple.Accounts (113 - 113) <8ABB9C91-30BB-3912-B479-1A0CD4772426> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts 0x7fff37b58000 - 0x7fff388f8ff3 com.apple.AppKit (6.9 - 1868.10.104) <28D0E5FE-E928-3D7D-960B-5F9D714292D5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff38948000 - 0x7fff38948fff com.apple.ApplicationServices (48 - 50) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff38949000 - 0x7fff389b4fff com.apple.ApplicationServices.ATS (377 - 488) <2D2E1006-AAAE-39BF-9B37-732352C7C6B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff38a4d000 - 0x7fff38a8aff3 libFontRegistry.dylib (266) <22DD7016-6330-37DA-8A2B-07988879485A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff38ae5000 - 0x7fff38b14ff7 com.apple.ATSUI (1.0 - 1) <5DF7C6DF-1C35-3E24-8F0E-A6C5AB287B9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff38b15000 - 0x7fff38b19ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <14280EE3-AEB6-3E27-A1E1-56F908C0AC7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff38bb4000 - 0x7fff38c0affa com.apple.HIServices (1.22 - 667) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff38c0b000 - 0x7fff38c19fff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff38c1a000 - 0x7fff38c5fff2 com.apple.print.framework.PrintCore (15 - 516) <2BC09000-EFF4-35BB-ABD0-67A7A232DA23> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff38c60000 - 0x7fff38c6afff com.apple.QD (4.0 - 413) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff38c6b000 - 0x7fff38c78ff0 com.apple.speech.synthesis.framework (9.0.16 - 9.0.16) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff38c79000 - 0x7fff38d46ff2 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff38d48000 - 0x7fff38d48fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <8C930D25-78EA-3366-97DB-694510ECD052> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff390bd000 - 0x7fff39430ff8 com.apple.CFNetwork (1091 - 1091) <1AC1BC5B-B839-30A9-8E4B-7FCECAAEAEAF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff394a5000 - 0x7fff394a5fff com.apple.Carbon (160 - 162) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff394a6000 - 0x7fff394a9ffb com.apple.CommonPanels (1.2.6 - 101) <089BF6B6-3EE6-3A94-8980-FBCD4A5612EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff394aa000 - 0x7fff3979eff4 com.apple.HIToolbox (2.1.1 - 982) <96CB7DDF-637D-3FF4-8A74-B79839A24D5F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff3979f000 - 0x7fff397a2ff3 com.apple.help (1.3.8 - 66) <2181BCA5-0ACA-37E4-9DBE-F027601301B2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff397a3000 - 0x7fff397a8ff7 com.apple.ImageCapture (9.0 - 1595) <2A46BFE0-09E4-37FF-B407-CD8C6DBD25E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff397a9000 - 0x7fff397a9fff com.apple.ink.framework (10.15 - 227) <548B0A7C-C783-306B-B3CE-AC64A92BEB94> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff397aa000 - 0x7fff397c4ffa com.apple.openscripting (1.7 - 184) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff397e5000 - 0x7fff397e5fff com.apple.print.framework.Print (15 - 271) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff397e6000 - 0x7fff397e8ff7 com.apple.securityhi (9.0 - 55008) <3431918A-702B-3FE8-93C8-D96ABE7E53CB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff397e9000 - 0x7fff397efff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <801FC57F-75E2-318A-8060-2714F9969B49> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff39983000 - 0x7fff39983fff com.apple.Cocoa (6.11 - 23) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff39991000 - 0x7fff39b7cff7 com.apple.ColorSync (4.13.0 - 3392) <8864A004-0F74-3A08-9A93-0807E9A3BA92> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff39e57000 - 0x7fff3a363ff2 com.apple.audio.CoreAudio (5.0 - 5.0) <66CB8FB5-1A65-3245-BDAF-1233EF13F8FA> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff3a3b6000 - 0x7fff3a3edff8 com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff3a3ee000 - 0x7fff3a7b2ff0 com.apple.CoreData (120 - 957) <38ADAF29-0E88-3F7B-B540-A39088024D1B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff3a7b3000 - 0x7fff3a8b5ffc com.apple.CoreDisplay (1.0 - 107) <74CF0A96-5493-36B5-A928-3B5C8042D2AD> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff3a8b6000 - 0x7fff3ad33ff2 com.apple.CoreFoundation (6.9 - 1661.11) <8A4A78B1-0784-3C7E-BEC2-852396C30786> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff3ad35000 - 0x7fff3b3abfe8 com.apple.CoreGraphics (2.0 - 1339) <1C1D9EBE-7651-378C-BD26-87FBE8DCE35D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff3b3b9000 - 0x7fff3b70eff6 com.apple.CoreImage (15.0.0 - 800.6.120) <4905FB21-BF52-3ABD-AD16-2C12B56C3D48> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff3bab1000 - 0x7fff3bc1aff4 com.apple.CoreMedia (1.0 - 2494.2.4.2) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff3bd03000 - 0x7fff3bd03fff com.apple.CoreServices (1059.3 - 1059.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff3bd04000 - 0x7fff3bd86ff3 com.apple.AE (812 - 812) <03CBE471-DF6D-3EE2-8E17-67A90F0C199F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff3bd87000 - 0x7fff3c068ff7 com.apple.CoreServices.CarbonCore (1210.11 - 1210.11) <4BFA9361-5D99-364C-893C-F614248B788A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff3c069000 - 0x7fff3c0b5fe9 com.apple.DictionaryServices (1.2 - 314) <51EC1D43-346C-39B3-9773-87D5859AFEF2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff3c0b6000 - 0x7fff3c0befff com.apple.CoreServices.FSEvents (1267.0.0.0.1 - 1267.0.0.0.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff3c0bf000 - 0x7fff3c2f2ff7 com.apple.LaunchServices (1059.3 - 1059.3) <0F58BBAA-08FE-3BD1-BE23-06219A83408F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff3c2f3000 - 0x7fff3c38bff9 com.apple.Metadata (10.7.0 - 2050.1) <4A16552A-220C-3230-B3E1-1CB019B8D3B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff3c38c000 - 0x7fff3c3b9ff7 com.apple.CoreServices.OSServices (1059.3 - 1059.3) <5ED8F885-F339-359C-BEA1-E31AB5B415DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff3c3ba000 - 0x7fff3c421fff com.apple.SearchKit (1.4.1 - 1.4.1) <764075BD-B52A-341A-8819-AB3AB8E2B24E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff3c422000 - 0x7fff3c445ffd com.apple.coreservices.SharedFileList (127 - 127) <721AD660-C851-3C8F-BDC0-5C3D14D572AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff3c76f000 - 0x7fff3c921ff0 com.apple.CoreText (352.0 - 632.1) <8AC4F62C-3D82-3E1B-9E3B-EFBB8E3CA467> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff3c922000 - 0x7fff3c966fff com.apple.CoreVideo (1.8 - 332.0) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff3c967000 - 0x7fff3c9f4ff8 com.apple.framework.CoreWLAN (13.0 - 1443) <15ADD55F-AD0C-3212-BFCC-CDE04900E7D5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff3cc96000 - 0x7fff3cc9cff7 com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff3ce8c000 - 0x7fff3cfa6ffe com.apple.FileProvider (229 - 229) <29201301-278A-3297-B409-6BFBDA65DE6F> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff3cfbe000 - 0x7fff3d383ffc com.apple.Foundation (6.9 - 1661.11) <6745D2C2-75E6-3BE0-9F3F-B49BDEE8EA3C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff3d3f0000 - 0x7fff3d41fffb com.apple.GSS (4.0 - 2.0) <326426FE-7AAD-30D5-8D72-F504868721A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff3d553000 - 0x7fff3d66affc com.apple.Bluetooth (7.0.0 - 7.0.0d98) <6813CE96-39AE-3234-9723-71E4EAF4F105> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff3d6ce000 - 0x7fff3d771ff3 com.apple.framework.IOKit (2.0.2 - 1726.0.1) <40544324-BC45-373E-AB28-3F0B449AA132> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff3d773000 - 0x7fff3d783ff4 com.apple.IOSurface (269.6 - 269.6) <1A8E275A-50B9-37AB-B1C3-34C9CB9B7E70> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff3d7f5000 - 0x7fff3d94bfee com.apple.ImageIO.framework (3.3.0 - 1964) <4364CCCE-909B-3FDE-8EE5-BEE999EE6F11> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff3d94c000 - 0x7fff3d94ffff libGIF.dylib (1964) <562D2F44-4167-30A3-8A58-808C02CB046C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff3d950000 - 0x7fff3da0afe7 libJP2.dylib (1964) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff3da0b000 - 0x7fff3da2ffef libJPEG.dylib (1964) <6999E953-E287-309F-A840-6075713F7CF7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff3dcad000 - 0x7fff3dcc7fe7 libPng.dylib (1964) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff3dcc8000 - 0x7fff3dcc9fff libRadiance.dylib (1964) <2C95768B-50C8-3CCC-AE98-6A8DFB190EB2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff3dcca000 - 0x7fff3dd13ff3 libTIFF.dylib (1964) <42E1A54E-7D47-34C3-B70B-AC9CB1D4310A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff3f116000 - 0x7fff3f128ff3 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff3f129000 - 0x7fff3f129fff libHeimdalProxy.dylib (77) /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff3f4c4000 - 0x7fff3f4cefff com.apple.MediaAccessibility (1.0 - 124) <76E1F525-D7B7-3391-8F0F-3E59ECD52C39> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff3f594000 - 0x7fff4004bff2 com.apple.MediaToolbox (1.0 - 2494.2.4.2) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff4004d000 - 0x7fff40110ffb com.apple.Metal (211.37 - 211.37) <03646984-7E16-3C32-8EEC-DF468C96D47D> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff4012d000 - 0x7fff40169ff3 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <89CFF4B2-07B9-3900-9C45-479B1DECE434> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff4016a000 - 0x7fff401f0ffe com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff401f1000 - 0x7fff40215ffc com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <09383DE6-3C6D-3C3E-8379-37C57A61B03C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff40216000 - 0x7fff4022bff9 com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <0AB52BAF-F186-3D7A-8742-790DF87B98DC> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff4022c000 - 0x7fff4038aff9 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff4038b000 - 0x7fff403d9ff7 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff403da000 - 0x7fff403dbff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff41321000 - 0x7fff4132dffe com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff4132e000 - 0x7fff41471ff6 com.apple.Network (1.0 - 1) <9D8DA6A1-9962-38DC-892E-17474F25D641> /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff43e8a000 - 0x7fff43ee2ff7 com.apple.opencl (3.5 - 3.5) <3BA51985-91E8-3648-A44C-3DC1E0FB3A04> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff43ee3000 - 0x7fff43effff7 com.apple.CFOpenDirectory (10.15 - 220) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff43f00000 - 0x7fff43f0bfff com.apple.OpenDirectory (10.15 - 220) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff44866000 - 0x7fff44868fff libCVMSPluginSupport.dylib (17.10.22) <6166E9E8-C25B-3C87-9AAF-17AF5F555330> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff44869000 - 0x7fff4486eff7 libCoreFSCache.dylib (176.1) <9988BF9F-AB03-37E5-AF00-9753DAD88A09> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff4486f000 - 0x7fff44873fff libCoreVMClient.dylib (176.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff44874000 - 0x7fff4487cff7 libGFXShared.dylib (17.10.22) <70250FC9-B214-3B29-8164-7E894B427286> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff4487d000 - 0x7fff44887fff libGL.dylib (17.10.22) <5207ADA9-5468-3B59-9F24-DC436623935A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff44888000 - 0x7fff448bdfff libGLImage.dylib (17.10.22) <65E476E1-30F0-3683-882E-0A6AB09A4832> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff44a51000 - 0x7fff44a8dfff libGLU.dylib (17.10.22) <06770F8B-B61E-305D-9057-244FD1974E05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff454bd000 - 0x7fff454ccff7 com.apple.opengl (17.10.22 - 17.10.22) <6B04A236-B26C-3EC9-BFC4-E24A9B9D6D07> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff46455000 - 0x7fff466d1ff3 com.apple.QuartzCore (1.11 - 808) <2B59E8E9-7AC2-36AD-A6E7-1D973E505477> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4721d000 - 0x7fff47235ffd com.apple.ScriptingBridge (1.4 - 79) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge 0x7fff47236000 - 0x7fff47578ff1 com.apple.security (7.0 - 59296.0.0.0.2) <73B5D559-A429-3D21-A12D-40F96096D55A> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff47579000 - 0x7fff47601ff7 com.apple.securityfoundation (6.0 - 55236) <3664EC17-7ED6-39B2-9F76-AE72B147D645> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff47630000 - 0x7fff47634ff8 com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff48370000 - 0x7fff483dafff com.apple.SystemConfiguration (1.19 - 1.19) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff48654000 - 0x7fff489faff1 com.apple.VideoToolbox (1.0 - 2494.2.4.2) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff4c17d000 - 0x7fff4c23ffe7 com.apple.APFS (1409.0.0 - 1409.0.0) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff4d20d000 - 0x7fff4d20eff1 com.apple.AggregateDictionary (1.0 - 1) <53FF99F2-9A44-39C1-BAFF-E5E5C415BFCD> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff4d61c000 - 0x7fff4d638ff2 com.apple.AppContainer (4.0 - 445) <67D5B206-22F8-33DE-9E70-AD73705C8E89> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff4d68a000 - 0x7fff4d698ffc com.apple.AppSandbox (4.0 - 445) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff4dafb000 - 0x7fff4db1fff3 com.apple.framework.Apple80211 (13.0 - 1445) <84538539-35C6-3720-8168-2AD618532828> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff4dc53000 - 0x7fff4dc62fdf com.apple.AppleFSCompression (119 - 1.0) <6C2A012D-A152-36AD-B84B-546DBA54F11D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff4dd5f000 - 0x7fff4dd6aff1 com.apple.AppleIDAuthSupport (1.0 - 1) <2CA46E21-B9C3-3BC1-AEAA-AE22D0C77B1B> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff4ddac000 - 0x7fff4ddf4fff com.apple.AppleJPEG (1.0 - 1) <63A27C92-55F8-3BA3-AE09-C90DEE5A2E8D> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff4e1c7000 - 0x7fff4e1e9ffb com.apple.applesauce (1.0 - 16.22) <2EC77AD7-40CD-31F7-8E9D-5C809F4C823A> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff4e2ad000 - 0x7fff4e2fdff7 com.apple.AppleVAFramework (6.1.2 - 6.1.2) <7D9D2DB6-DA15-35C5-84C8-0F60D8ED788D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff4e346000 - 0x7fff4e355ff6 com.apple.AssertionServices (1.0 - 215) <05DF7326-05E8-39BC-9FD3-BE0B94CF7E2A> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff4e866000 - 0x7fff4ec67ff4 com.apple.audio.AudioResourceArbitration (1.0 - 1) <4A9732A3-9656-34BC-8B0C-5D55B6C24AC0> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration 0x7fff4eec3000 - 0x7fff4f0f5ff3 com.apple.audio.AudioToolboxCore (1.0 - 1099.1) <205EF03C-75EC-3C05-9D88-6E209575507A> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff4f0f6000 - 0x7fff4f206ffd com.apple.AuthKit (1.0 - 1) /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff4f3b6000 - 0x7fff4f3bfff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <8B8C2432-614C-306B-9541-568CDB47A01C> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff4f3c0000 - 0x7fff4f460ff2 com.apple.backup.framework (1.11 - 1285.1) <1B19DBA1-330D-37CF-8E12-5141D3B01840> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff4f461000 - 0x7fff4f4e1ff7 com.apple.BaseBoard (452 - 452) /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff4f5e5000 - 0x7fff4f621ff7 com.apple.bom (14.0 - 219) <051C58AF-80F8-355C-846E-BC350EEB4BFB> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff50188000 - 0x7fff501d7fff com.apple.ChunkingLibrary (302 - 302) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff50cf2000 - 0x7fff50cfbff3 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff50d0f000 - 0x7fff50d26ff1 com.apple.commonutilities (8.0 - 900) <04EF5C4A-71C1-3B63-85B1-24CD27D6D15D> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff513ee000 - 0x7fff517c3fc8 com.apple.CoreAUC (280.0.0 - 280.0.0) <7ECC6E8C-B311-3E07-A61D-E551BE93EEE3> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff517c4000 - 0x7fff517f2ffb com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <3154A98C-70F6-3224-BF63-55439B29051B> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff51815000 - 0x7fff51834ffd com.apple.analyticsd (1.0 - 1) /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff51d76000 - 0x7fff51d86ff3 com.apple.CoreEmoji (1.0 - 99) <032CC34C-AE8C-30BF-A138-8935DEAB5424> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff523c8000 - 0x7fff52432ff0 com.apple.CoreNLP (1.0 - 209) /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff52888000 - 0x7fff52890ff8 com.apple.CorePhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff52fd0000 - 0x7fff52ff3ff7 com.apple.CoreSVG (1.0 - 127) /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff52ff4000 - 0x7fff53027ff7 com.apple.CoreServicesInternal (439.0.1 - 439.0.1) <64F4CBCD-35A7-31E3-B2B5-21142179832E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff53028000 - 0x7fff53056ff3 com.apple.CSStore (1059.3 - 1059.3) <0BD9D195-77B8-345F-9A68-603EC96A6F76> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff53541000 - 0x7fff535c6ff7 com.apple.CoreSymbolication (11.0 - 64509.88.1) <9B69D186-661E-3849-A610-149E817B8B04> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff5365e000 - 0x7fff53788ff3 com.apple.coreui (2.1 - 578) <36CA46E7-0567-387D-90EF-F7EE526354D7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff53789000 - 0x7fff53926ff9 com.apple.CoreUtils (6.0 - 600.11) <76B10225-CDDE-348D-8252-4509A5B5B451> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff53a59000 - 0x7fff53a6cff1 com.apple.CrashReporterSupport (10.13 - 15005) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff53cce000 - 0x7fff53cddffc com.apple.framework.DFRFoundation (1.0 - 230) <658A2DAB-7720-3AFB-AEA0-8119CD9F2B0F> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff53cde000 - 0x7fff53ce3ffb com.apple.DSExternalDisplay (3.1 - 380) /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff53d4c000 - 0x7fff53dc7ff8 com.apple.datadetectorscore (8.0 - 655) <26BA2F27-0D4A-3E1E-AF31-A13E0BD53A43> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff53e13000 - 0x7fff53e51ff0 com.apple.DebugSymbols (194 - 194) <31B337C6-276A-3E64-A848-443680360510> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff53e52000 - 0x7fff53fd7ffd com.apple.desktopservices (1.14 - 1270.1.1) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff556a5000 - 0x7fff55ac0ff9 com.apple.vision.FaceCore (4.3.0 - 4.3.0) <93664BD2-9086-32D8-BAEC-1325D898F5A7> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff5610a000 - 0x7fff56241ff4 libFontParser.dylib (268) <7C9D32B1-69E5-3262-8676-9333D67C009E> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff562db000 - 0x7fff562e8ff4 libhvf.dylib (268) /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff5ae59000 - 0x7fff5ae5ffff com.apple.GPUWrangler (4.1.30 - 4.1.30) <29455C4A-CE62-374B-9A8C-ED473CF41B1C> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff5b178000 - 0x7fff5b19dff0 com.apple.GenerationalStorage (2.0 - 308) <7BA21AC2-DC4A-3D70-A7F8-93E18F95A04C> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff5c249000 - 0x7fff5c257ffb com.apple.GraphVisualizer (1.0 - 100.1) <6EB4C6D2-C51F-3FD0-B64A-FCC47301550A> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff5c3e5000 - 0x7fff5c458ff4 com.apple.Heimdal (4.0 - 2.0) <24D670EF-B743-3632-A1A2-3EC594EB862A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff5e4d5000 - 0x7fff5e4ddff5 com.apple.IOAccelerator (438.1.13 - 438.1.13) <88681ADC-310B-356D-82F3-C8DBFE3522CC> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff5e4e0000 - 0x7fff5e4f6ff7 com.apple.IOPresentment (1.0 - 37) /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff5e876000 - 0x7fff5e8ebff2 com.apple.IconServices (428 - 428) <5CEF8992-FB80-3937-9FD2-2B0EC3C7F68F> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff5eaa3000 - 0x7fff5eaa9ff4 com.apple.InternationalSupport (1.0 - 39) <3B5793E3-F962-3164-A04A-D0B56C98B86C> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff5ece9000 - 0x7fff5ed09ff6 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <2D069ABB-FC70-3EC4-A92B-F92B893D9F4F> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff5ee5f000 - 0x7fff5ef23ffd com.apple.LanguageModeling (1.0 - 209) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff5ef24000 - 0x7fff5ef72fff com.apple.Lexicon-framework (1.0 - 68) <2E09883B-9603-30C2-A91D-03F67ED49A8F> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff5ef79000 - 0x7fff5ef7dff6 com.apple.LinguisticData (1.0 - 328) /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff5f801000 - 0x7fff5f804fff com.apple.Mangrove (1.0 - 25) <1D7CA0D7-03A2-36CE-A2CD-A92732903312> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff5fa48000 - 0x7fff5fafbfff com.apple.MediaExperience (1.0 - 1) <4E2EB5DE-7779-3083-B2FB-E66018E98F28> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience 0x7fff60299000 - 0x7fff602e3fff com.apple.spotlight.metadata.utilities (1.0 - 2050.1) <52FBD618-04C2-342F-8127-41114B50C90B> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff602e4000 - 0x7fff603b2ff3 com.apple.gpusw.MetalTools (1.0 - 1) <4014C30A-4D9E-33CD-A622-9D647090825B> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff605cb000 - 0x7fff605e8ff4 com.apple.MobileKeyBag (2.0 - 1.0) <68946B55-8BB2-3406-B8D5-0E793744E414> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff6084e000 - 0x7fff6087cfff com.apple.MultitouchSupport.framework (3000.30 - 3000.30) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff60ce5000 - 0x7fff60ceffff com.apple.NetAuth (6.2 - 6.2) <63C69513-493A-3D7E-9FA4-B926F3F3A735> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff61616000 - 0x7fff61662ff7 com.apple.OTSVG (1.0 - 632.1) <2BD6846A-EFCC-383D-8F60-0CB193C7BEF2> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff627b3000 - 0x7fff627beffe com.apple.PerformanceAnalysis (1.240 - 240) <1C115902-7777-33DD-BCC3-226AA157B9CC> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff627bf000 - 0x7fff627e7ff8 com.apple.persistentconnection (1.0 - 1.0) /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff6500a000 - 0x7fff65023fff com.apple.ProtocolBuffer (1 - 272.20.6.18.1) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff65452000 - 0x7fff6547bff9 com.apple.RemoteViewServices (2.0 - 147) <39B698E1-621F-3E63-A2D8-4FD39478313E> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff655de000 - 0x7fff65619ff4 com.apple.RunningBoardServices (1.0 - 215) /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff66ef6000 - 0x7fff66ef9ff9 com.apple.SecCodeWrapper (4.0 - 445) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff67036000 - 0x7fff67153ff0 com.apple.Sharing (1433 - 1433) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff6814b000 - 0x7fff6843cff5 com.apple.SkyLight (1.600.0 - 430.1) <2E4E4176-15DD-319A-A5B8-36608317CE03> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff68c81000 - 0x7fff68c8efff com.apple.SpeechRecognitionCore (6.0.68 - 6.0.68) <5AB592DC-751F-3426-97AC-847C926DEE34> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff6949c000 - 0x7fff694a5fff com.apple.SymptomDiagnosticReporter (1.0 - 1233) <7A1873B4-1017-33D5-9525-6B5A0492E201> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff69750000 - 0x7fff69760ff3 com.apple.TCC (1.0 - 1) <6DDF7D5C-3EDD-301E-8EF2-0EDCE183E249> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff69c41000 - 0x7fff69d08ff4 com.apple.TextureIO (3.10.9 - 3.10.9) <2DCBCBB2-2153-30CD-BEFF-C1A3F0C2D3F6> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff6b28a000 - 0x7fff6b4ddffb com.apple.UIFoundation (1.0 - 631) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff6c0b9000 - 0x7fff6c0d8ff7 com.apple.UserManagement (1.0 - 1) <72389952-F2D5-3816-818C-21ACBAE394CF> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement 0x7fff6ce85000 - 0x7fff6cf60ff3 com.apple.ViewBridge (444 - 444) /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff6d0fe000 - 0x7fff6d0fffff com.apple.WatchdogClient.framework (1.0 - 66) <997E59DB-2EEC-32A1-8175-6AF5EB2241F4> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff6dc66000 - 0x7fff6dc69ffa com.apple.dt.XCTTargetBootstrap (1.0 - 14761.2) <75D387DE-FE93-30F0-8225-FDFB2C5A52A3> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff6dce2000 - 0x7fff6dcf0ff1 com.apple.audio.caulk (1.0 - 30) /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff6e3ac000 - 0x7fff6e3aeff3 com.apple.loginsupport (1.0 - 1) <54433B49-201C-3256-860B-5CB3C53F5F9A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff6e6b9000 - 0x7fff6e6eeff2 libAudioToolboxUtility.dylib (1099.1) /usr/lib/libAudioToolboxUtility.dylib 0x7fff6e6f5000 - 0x7fff6e72aff7 libCRFSuite.dylib (48) /usr/lib/libCRFSuite.dylib 0x7fff6e72d000 - 0x7fff6e737ff3 libChineseTokenizer.dylib (34) /usr/lib/libChineseTokenizer.dylib 0x7fff6e7c4000 - 0x7fff6e7c6fff libDiagnosticMessagesClient.dylib (112) <2C573438-FAE4-3067-A996-897F19ED64B3> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff6e801000 - 0x7fff6e9b8ff3 libFosl_dynamic.dylib (100.4) <2F6C11A6-8732-3F20-BA5C-B49C649E2380> /usr/lib/libFosl_dynamic.dylib 0x7fff6e9e0000 - 0x7fff6e9e6ff3 libIOReport.dylib (54) <1857A478-4C48-337C-83CE-5A6B8B2DFBC5> /usr/lib/libIOReport.dylib 0x7fff6eac6000 - 0x7fff6eacdfff libMatch.1.dylib (36) <6249C83D-1E3C-3D34-94CE-5978A286752E> /usr/lib/libMatch.1.dylib 0x7fff6eafd000 - 0x7fff6eb1cff7 libMobileGestalt.dylib (823) <07DEAB96-4CC6-3632-B802-0A57D29546A0> /usr/lib/libMobileGestalt.dylib 0x7fff6ec83000 - 0x7fff6ec84ff3 libSystem.B.dylib (1281) <329CB9E6-3629-3B18-8331-58E016934E9E> /usr/lib/libSystem.B.dylib 0x7fff6ed14000 - 0x7fff6ed15fff libThaiTokenizer.dylib (3) <112C5617-DAAC-3338-8813-20A03A645126> /usr/lib/libThaiTokenizer.dylib 0x7fff6ed2d000 - 0x7fff6ed43fff libapple_nghttp2.dylib (1.39.1) <34FE5DB8-1B97-3FA4-B356-238E2B18431E> /usr/lib/libapple_nghttp2.dylib 0x7fff6ed78000 - 0x7fff6edeafff libarchive.2.dylib (70) /usr/lib/libarchive.2.dylib 0x7fff6edeb000 - 0x7fff6ee81fc5 libate.dylib (2.0.8) <301EB98C-30BA-364C-BA91-64AB02B079BB> /usr/lib/libate.dylib 0x7fff6ee85000 - 0x7fff6ee85ff3 libauto.dylib (187) /usr/lib/libauto.dylib 0x7fff6ef41000 - 0x7fff6ef51fff libbsm.0.dylib (60) <51D41862-7B70-330D-AAAC-82E2394F3891> /usr/lib/libbsm.0.dylib 0x7fff6ef52000 - 0x7fff6ef5efff libbz2.1.0.dylib (44) /usr/lib/libbz2.1.0.dylib 0x7fff6ef5f000 - 0x7fff6efb2fff libc++.1.dylib (800.6) <84048BCE-6E5B-3BE1-A885-01656C3F63C2> /usr/lib/libc++.1.dylib 0x7fff6efb3000 - 0x7fff6efc7fff libc++abi.dylib (800.7) <2CD098FD-A9A9-35CE-945B-6F474B4CBE10> /usr/lib/libc++abi.dylib 0x7fff6efc8000 - 0x7fff6efc8ffb libcharset.1.dylib (59) <1F996096-7390-30C4-A3A9-B837F2F94A8E> /usr/lib/libcharset.1.dylib 0x7fff6efc9000 - 0x7fff6efdaffb libcmph.dylib (8) <0C8FCDAE-C26B-3660-AE81-63398515513C> /usr/lib/libcmph.dylib 0x7fff6efdb000 - 0x7fff6eff2fe7 libcompression.dylib (86) <7E70B9B1-47BA-30C3-86B2-9342AAD0234B> /usr/lib/libcompression.dylib 0x7fff6f2a7000 - 0x7fff6f2bdfff libcoretls.dylib (167) /usr/lib/libcoretls.dylib 0x7fff6f2be000 - 0x7fff6f2bfffb libcoretls_cfhelpers.dylib (167) /usr/lib/libcoretls_cfhelpers.dylib 0x7fff6f87b000 - 0x7fff6f8dafff libcups.2.dylib (482) <053A8418-D13E-3C88-B896-4C7618B91746> /usr/lib/libcups.2.dylib 0x7fff6f9e6000 - 0x7fff6f9e6ff3 libenergytrace.dylib (21) <44E71636-95C6-3534-8D18-183E5B684BCE> /usr/lib/libenergytrace.dylib 0x7fff6f9e7000 - 0x7fff6fa00ff7 libexpat.1.dylib (19) <720519EE-0AC0-3D5E-B22C-1FFAE91D255B> /usr/lib/libexpat.1.dylib 0x7fff6fa0e000 - 0x7fff6fa0fff7 libfakelink.dylib (143) <030834D7-0162-3281-B23D-3DF4BA74203D> /usr/lib/libfakelink.dylib 0x7fff6fa1e000 - 0x7fff6fa23fff libgermantok.dylib (24) <5ACECCC3-4268-376C-92B9-21BF3130C1C3> /usr/lib/libgermantok.dylib 0x7fff6fa24000 - 0x7fff6fa28fff libheimdal-asn1.dylib (564) /usr/lib/libheimdal-asn1.dylib 0x7fff6fa29000 - 0x7fff6fb19ff7 libiconv.2.dylib (59) <1BCCDBF3-6BC9-3E24-9B28-614FF139FEC1> /usr/lib/libiconv.2.dylib 0x7fff6fb1a000 - 0x7fff6fd72fff libicucore.A.dylib (64221.0.1) /usr/lib/libicucore.A.dylib 0x7fff6fd8c000 - 0x7fff6fd8dfff liblangid.dylib (133) <970E01F7-831E-368D-A6EB-E8DC0469BCF5> /usr/lib/liblangid.dylib 0x7fff6fd8e000 - 0x7fff6fda6ffb liblzma.5.dylib (16) /usr/lib/liblzma.5.dylib 0x7fff6fdbd000 - 0x7fff6fe64fff libmecab.dylib (871) <5CC7B6A7-E81C-3D63-88AD-40B55F36E000> /usr/lib/libmecab.dylib 0x7fff6fe65000 - 0x7fff700c1fe9 libmecabra.dylib (871) /usr/lib/libmecabra.dylib 0x7fff70421000 - 0x7fff70450ff7 libncurses.5.4.dylib (57) <1FCEFDD9-1845-3136-98E3-D1360B5380F0> /usr/lib/libncurses.5.4.dylib 0x7fff7057f000 - 0x7fff709ebff4 libnetwork.dylib (1872) /usr/lib/libnetwork.dylib 0x7fff70a89000 - 0x7fff70abaffe libobjc.A.dylib (777) <48D1B189-CE0C-3277-BDD2-7FE861F3494A> /usr/lib/libobjc.A.dylib 0x7fff70acc000 - 0x7fff70ad0fff libpam.2.dylib (25) <3C6D9127-7380-396D-89E1-D636637D96F4> /usr/lib/libpam.2.dylib 0x7fff70ad3000 - 0x7fff70b06fff libpcap.A.dylib (89) /usr/lib/libpcap.A.dylib 0x7fff70b88000 - 0x7fff70ba0ff7 libresolv.9.dylib (67) <4862B371-A813-37A5-950A-2048841394CF> /usr/lib/libresolv.9.dylib 0x7fff70ba2000 - 0x7fff70be5fff libsandbox.1.dylib (1208.0.0.141.1) /usr/lib/libsandbox.1.dylib 0x7fff70bf9000 - 0x7fff70bfaff7 libspindump.dylib (279) /usr/lib/libspindump.dylib 0x7fff70bfb000 - 0x7fff70de7ff7 libsqlite3.dylib (305) <2D9FA018-1B39-33CA-BA8D-1C868A6D7AD5> /usr/lib/libsqlite3.dylib 0x7fff71036000 - 0x7fff71039ffb libutil.dylib (57) /usr/lib/libutil.dylib 0x7fff7103a000 - 0x7fff71047fff libxar.1.dylib (420) <1DE4E394-5374-31AF-BC10-7BEBD2AEF087> /usr/lib/libxar.1.dylib 0x7fff7104c000 - 0x7fff7112eff7 libxml2.2.dylib (32.11) /usr/lib/libxml2.2.dylib 0x7fff71132000 - 0x7fff7115afff libxslt.1.dylib (16.5) <11BCC6EC-B98F-3AE0-8D07-E9A5F387F119> /usr/lib/libxslt.1.dylib 0x7fff7115b000 - 0x7fff7116dfff libz.1.dylib (76) /usr/lib/libz.1.dylib 0x7fff71ba9000 - 0x7fff71baeff7 libcache.dylib (83) <22879F3F-6A93-3588-9577-41D8E7D2EF50> /usr/lib/system/libcache.dylib 0x7fff71baf000 - 0x7fff71bbaff7 libcommonCrypto.dylib (60164) <8FF395E7-FA7F-38E3-864D-D2A22B6F6B0E> /usr/lib/system/libcommonCrypto.dylib 0x7fff71bbb000 - 0x7fff71bc2fff libcompiler_rt.dylib (101.2) <022AC147-BE0F-3CB6-A235-36C7DCE64A69> /usr/lib/system/libcompiler_rt.dylib 0x7fff71bc3000 - 0x7fff71bccff7 libcopyfile.dylib (166) /usr/lib/system/libcopyfile.dylib 0x7fff71bcd000 - 0x7fff71c64fd7 libcorecrypto.dylib (858) <4BBBB9F8-C81D-328E-8943-17A3B881C844> /usr/lib/system/libcorecrypto.dylib 0x7fff71d7b000 - 0x7fff71dbcff0 libdispatch.dylib (1173) /usr/lib/system/libdispatch.dylib 0x7fff71dbd000 - 0x7fff71df2fff libdyld.dylib (730) <0CA391E9-56C9-3C31-B79F-22E3A4928952> /usr/lib/system/libdyld.dylib 0x7fff71df3000 - 0x7fff71df3ffb libkeymgr.dylib (30) <1722C5B6-9C04-3827-8ED6-220B008AC127> /usr/lib/system/libkeymgr.dylib 0x7fff71df4000 - 0x7fff71e00ff7 libkxld.dylib (6153.0.59.141.4) /usr/lib/system/libkxld.dylib 0x7fff71e01000 - 0x7fff71e01ff7 liblaunch.dylib (1732) /usr/lib/system/liblaunch.dylib 0x7fff71e02000 - 0x7fff71e07ff7 libmacho.dylib (949) <3798A54C-E719-3A70-8887-AE88E60267D8> /usr/lib/system/libmacho.dylib 0x7fff71e08000 - 0x7fff71e0affb libquarantine.dylib (109) /usr/lib/system/libquarantine.dylib 0x7fff71e0b000 - 0x7fff71e0cff7 libremovefile.dylib (48) <91018898-8D19-38D7-85C4-1152D7D83C08> /usr/lib/system/libremovefile.dylib 0x7fff71e0d000 - 0x7fff71e24ff7 libsystem_asl.dylib (377) <7A20939A-6396-3748-A8EC-1324FE506EA9> /usr/lib/system/libsystem_asl.dylib 0x7fff71e25000 - 0x7fff71e25fff libsystem_blocks.dylib (74) <36CE25EB-97C0-3FB6-B85C-D995720EFC67> /usr/lib/system/libsystem_blocks.dylib 0x7fff71e26000 - 0x7fff71eadfff libsystem_c.dylib (1351) <469A6937-7157-3370-AE86-99B0AF1F02CD> /usr/lib/system/libsystem_c.dylib 0x7fff71eae000 - 0x7fff71eb1fff libsystem_configuration.dylib (1059) /usr/lib/system/libsystem_configuration.dylib 0x7fff71eb2000 - 0x7fff71eb5fff libsystem_coreservices.dylib (112.1) /usr/lib/system/libsystem_coreservices.dylib 0x7fff71eb6000 - 0x7fff71ebdff7 libsystem_darwin.dylib (1351) <4F00E33B-5665-39DB-B229-24549786A846> /usr/lib/system/libsystem_darwin.dylib 0x7fff71ebe000 - 0x7fff71ec5ff7 libsystem_dnssd.dylib (1090) /usr/lib/system/libsystem_dnssd.dylib 0x7fff71ec6000 - 0x7fff71ec7ffb libsystem_featureflags.dylib (17) /usr/lib/system/libsystem_featureflags.dylib 0x7fff71ec8000 - 0x7fff71f15ff7 libsystem_info.dylib (538) <5DEF0638-2451-34DF-83BD-5FD40C8CF974> /usr/lib/system/libsystem_info.dylib 0x7fff71f16000 - 0x7fff71f42fff libsystem_kernel.dylib (6153.0.59.141.4) /usr/lib/system/libsystem_kernel.dylib 0x7fff71f43000 - 0x7fff71f8aff7 libsystem_m.dylib (3178) <91BC6FEA-1822-367C-893F-189C858AD449> /usr/lib/system/libsystem_m.dylib 0x7fff71f8b000 - 0x7fff71fb2fff libsystem_malloc.dylib (283) /usr/lib/system/libsystem_malloc.dylib 0x7fff71fb3000 - 0x7fff71fc0ff7 libsystem_networkextension.dylib (1084) /usr/lib/system/libsystem_networkextension.dylib 0x7fff71fc1000 - 0x7fff71fcafff libsystem_notify.dylib (241) /usr/lib/system/libsystem_notify.dylib 0x7fff71fcb000 - 0x7fff71fd4fe7 libsystem_platform.dylib (220) <08615ED0-ABE3-315B-A671-E58669DB4715> /usr/lib/system/libsystem_platform.dylib 0x7fff71fd5000 - 0x7fff71fdfff7 libsystem_pthread.dylib (414) <7F37B2AE-E761-3AA1-A732-1A9A122A5A58> /usr/lib/system/libsystem_pthread.dylib 0x7fff71fe0000 - 0x7fff71fe4ffb libsystem_sandbox.dylib (1208.0.0.141.1) /usr/lib/system/libsystem_sandbox.dylib 0x7fff71fe5000 - 0x7fff71fe7fff libsystem_secinit.dylib (62) <27C578F2-5060-3356-8056-D8A95E35EE80> /usr/lib/system/libsystem_secinit.dylib 0x7fff71fe8000 - 0x7fff71fefffb libsystem_symptoms.dylib (1233) <8669FBA7-1BAE-33C8-B16D-9C42CAA28C76> /usr/lib/system/libsystem_symptoms.dylib 0x7fff71ff0000 - 0x7fff72006ffa libsystem_trace.dylib (1142) <7EC89EDE-5F34-3652-A5D2-49A419F33348> /usr/lib/system/libsystem_trace.dylib 0x7fff72008000 - 0x7fff7200dffb libunwind.dylib (35.4) <79D5AB20-D1D7-3D48-B7FA-2979471A0F34> /usr/lib/system/libunwind.dylib 0x7fff7200e000 - 0x7fff72042ffe libxpc.dylib (1732) <2BF09B1C-904F-3F15-8821-C43B2F91B5A6> /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 1 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 1815 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=539.1M resident=0K(0%) swapped_out_or_unallocated=539.1M(100%) Writable regions: Total=143.2M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=143.2M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Activity Tracing 256K 1 CoreServices 248K 1 Dispatch continuations 24.0M 1 Kernel Alloc Once 8K 1 MALLOC 108.5M 34 MALLOC guard page 16K 4 Memory Tag 242 12K 1 STACK GUARD 56.0M 5 Stack 10.0M 5 VM_ALLOCATE 48K 3 __DATA 23.4M 273 __DATA_CONST 24K 2 __FONT_DATA 4K 1 __LINKEDIT 357.6M 3 __OBJC_RO 31.5M 1 __OBJC_RW 1748K 2 __TEXT 181.5M 274 __UNICODE 564K 1 mapped file 42.1M 9 shared memory 648K 14 =========== ======= ======= TOTAL 838.0M 636 Model: MacBookPro15,1, BootROM 1037.0.22.0.0 (iBridge: 17.16.10507.5.6,0), 6 processors, Intel Core i9, 2,9 GHz, 16 GB, SMC Graphics: kHW_AMDRadeonPro560XItem, Radeon Pro 560X, spdisplays_pcie_device, 4 GB Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1 Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Jun 30 2019 21:47:08 version 9.30.353.0.32.5.28 FWID 01-c152fcd9 Bluetooth: Version 7.0.0d98, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 USB Device: USB 3.1 Bus USB Device: Apple T2 Bus USB Device: Touch Bar Backlight USB Device: Touch Bar Display USB Device: Apple Internal Keyboard / Trackpad USB Device: Headset USB Device: Ambient Light Sensor USB Device: FaceTime HD Camera (Built-in) USB Device: Apple T2 Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 42.1 Thunderbolt Bus: MacBook Pro, Apple Inc., 42.1 ```
And previously on beta 3 (16.07.19 01:38) ``` Process: yabai [94226] Path: /usr/local/opt/yabai/bin/yabai Identifier: yabai Version: 0 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: yabai [94226] User ID: 501 Date/Time: 2019-07-15 21:44:16.432 +0200 OS Version: Mac OS X 10.15 (19A501i) Report Version: 12 Bridge OS Version: 4.0 (17P50496d) Anonymous UUID: 7754B96D-2B03-57AE-9A3B-249F859121FE Sleep/Wake UUID: 98C78CDB-1510-431B-8CF3-BE2ECC0ED415 Time Awake Since Boot: 260000 seconds Time Since Wake: 1400 seconds System Integrity Protection: disabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00007fff00000000 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [94226] VM Regions Near 0x7fff00000000: Stack 00007ffee0b72000-00007ffee1372000 [ 8192K] rw-/rwx SM=ALI thread 0 --> Submap 00007fff00000000-00007fff80000000 [ 2.0G] r--/rwx SM=SHM machine-wide VM submap unused shlib __TEXT 00007fff268e2000-00007fff2f180000 [136.6M] r-x/r-x SM=COW system shared lib __TEXT not used by this process Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 ??? 0x00007fff00000000 0 + 140733193388032 1 com.apple.SkyLight 0x00007fff60dfecfe processEventTapData(void*, unsigned int, unsigned int, unsigned int, unsigned char*, unsigned int) + 709 2 com.apple.SkyLight 0x00007fff60f5d868 _XPostEventTapData + 277 3 com.apple.SkyLight 0x00007fff60dfe9db eventTapMessageHandler(__CFMachPort*, void*, long, void*) + 147 4 com.apple.CoreFoundation 0x00007fff3333c293 __CFMachPortPerform + 250 5 com.apple.CoreFoundation 0x00007fff3333c18d __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41 6 com.apple.CoreFoundation 0x00007fff3333c0dd __CFRunLoopDoSource1 + 541 7 com.apple.CoreFoundation 0x00007fff333243ca __CFRunLoopRun + 2612 8 com.apple.CoreFoundation 0x00007fff33323711 CFRunLoopRunSpecific + 499 9 com.apple.CoreFoundation 0x00007fff333234e8 CFRunLoopRun + 40 10 yabai 0x000000010e8b23d8 main + 2216 11 libdyld.dylib 0x00007fff6a954c49 start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff6aaa151a __accept + 10 1 yabai 0x000000010e893bdc socket_connection_handler + 44 2 libsystem_pthread.dylib 0x00007fff6ab60daa _pthread_start + 125 3 libsystem_pthread.dylib 0x00007fff6ab5d6af thread_start + 15 Thread 2: 0 libsystem_kernel.dylib 0x00007fff6aabddae sem_wait + 10 1 yabai 0x000000010e895c09 event_loop_run + 169 2 libsystem_pthread.dylib 0x00007fff6ab60daa _pthread_start + 125 3 libsystem_pthread.dylib 0x00007fff6ab5d6af thread_start + 15 Thread 3: 0 libsystem_pthread.dylib 0x00007fff6ab5d68c start_wqthread + 0 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x620cd1c4199a0005 rbx: 0x00007fa0ebc12270 rcx: 0x0000000000000000 rdx: 0xffffffffffffffd0 rdi: 0x0000000000000000 rsi: 0x0000000000000000 rbp: 0x00007ffee1367a50 rsp: 0x00007ffee1367a40 r8: 0x000000000ed9116b r9: 0x000000000ed91171 r10: 0x00000000fffe07ff r11: 0xffffffffffff7580 r12: 0x00007fa0ed90e140 r13: 0x0000000000000158 r14: 0x00007fa0ed910660 r15: 0x00007ffee1370ea8 rip: 0x00007fff00000000 rfl: 0x0000000000010206 cr2: 0x00007fff00000000 Logical CPU: 10 Error Code: 0x00000014 (no mapping for user instruction write) Trap Number: 14 Binary Images: 0x10e88e000 - 0x10e8bcffb +yabai (0) <33CE8C04-B28E-3CF2-92DB-D1310CCAE367> /usr/local/opt/yabai/bin/yabai 0x11beb3000 - 0x11bf4181f dyld (729) /usr/lib/dyld 0x7fff2f180000 - 0x7fff2f180fff com.apple.Accelerate (1.11 - Accelerate 1.11) <2D1DC3DB-66BD-388A-A536-EC5908A309DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff2f181000 - 0x7fff2f197fe7 libCGInterfaces.dylib (523) <90BA189C-760C-3503-966C-7C59655DCDFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff2f198000 - 0x7fff2f803fff com.apple.vImage (8.1 - 523) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff2f804000 - 0x7fff2fa6dff7 libBLAS.dylib (1302) <3630049B-50EB-3F3D-A8BC-8F7D1D6D32A3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff2fa6e000 - 0x7fff2fd41fc7 libBNNS.dylib (136) <9AFC2816-A5B3-324B-AD16-ED02D4FB8984> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff2fd43000 - 0x7fff300e8fff libLAPACK.dylib (1302) <1B041262-E379-3182-977F-3B5A454291D2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff300e9000 - 0x7fff300feff8 libLinearAlgebra.dylib (1302) <165A4414-6BB4-3C95-BBEC-059F5EE511EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff300ff000 - 0x7fff30104ff3 libQuadrature.dylib (7) <5EE54656-3E08-399E-B40F-FAECB14A6736> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff30105000 - 0x7fff30175fff libSparse.dylib (103) <687A66F9-F671-3D0D-9D6A-D8C566980D8F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff30176000 - 0x7fff30188fef libSparseBLAS.dylib (1302) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff30189000 - 0x7fff3035fff3 libvDSP.dylib (731) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff30360000 - 0x7fff3041bfd3 libvMisc.dylib (731) <8C317813-2DFF-3DD1-BDD3-ED296B2E7E00> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff3041c000 - 0x7fff3041cfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <7A089FB3-4ADA-308F-AB2E-917A9D176476> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff3041d000 - 0x7fff30478ff9 com.apple.Accounts (113 - 113) /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts 0x7fff305bd000 - 0x7fff31359fff com.apple.AppKit (6.9 - 1865.10.102) <54721959-5F06-38D2-9207-E75B7A826007> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff313a9000 - 0x7fff313a9fff com.apple.ApplicationServices (48 - 50) <916A7E4F-517A-377C-BB86-1A79A668F8F5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff313aa000 - 0x7fff31415fff com.apple.ApplicationServices.ATS (377 - 486) <1B5E31F4-C04A-34EB-B072-0682601C501D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff314ae000 - 0x7fff314ebff3 libFontRegistry.dylib (264) <2B99B8B6-92ED-3DF7-AFB0-CDF65D27A0C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff31546000 - 0x7fff31575ff7 com.apple.ATSUI (1.0 - 1) <11F86046-E374-35CA-A5BB-BAA4BD2A975A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff31576000 - 0x7fff3157aff3 com.apple.ColorSyncLegacy (4.13.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff31615000 - 0x7fff3166bffa com.apple.HIServices (1.22 - 665) <0198ABE4-1CAB-33B6-9A6B-D6E3F0F1B146> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff3166c000 - 0x7fff3167afff com.apple.LangAnalysis (1.7.0 - 1.7.0) <875E4524-887B-3903-A5DB-629ACF53148F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff3167b000 - 0x7fff316c0ff2 com.apple.print.framework.PrintCore (15 - 516) <81B7B750-9282-3CF5-9717-5E75E093C95E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff316c1000 - 0x7fff316cbfff com.apple.QD (4.0 - 413) <82E07FFE-F202-36F4-AE8A-D679DE2AFBC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff316cc000 - 0x7fff316d8ff3 com.apple.speech.synthesis.framework (9.0.12 - 9.0.12) <254197BA-163E-38A3-96E8-7A9C6F79AA0C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff316d9000 - 0x7fff317a6ff2 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff317a8000 - 0x7fff317a8fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <1CCCB62A-E954-3DF6-9C3E-6FEFF47E355F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff31b1d000 - 0x7fff31e8fff1 com.apple.CFNetwork (1088.1 - 1088.1) <2DFEDA36-6D10-3088-AD29-4234282C7ABA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff31f04000 - 0x7fff31f04fff com.apple.Carbon (160 - 162) <37A712F6-397D-3C6F-988D-B28E86D99ADA> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff31f05000 - 0x7fff31f08ffb com.apple.CommonPanels (1.2.6 - 101) <34A4D0BF-AEF5-33A3-9B83-EE3605450862> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff31f09000 - 0x7fff321fdff4 com.apple.HIToolbox (2.1.1 - 980) <00CE44F5-30A3-340C-AC0F-417F66A7E39F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff321fe000 - 0x7fff32201ff3 com.apple.help (1.3.8 - 66) <89575BFB-AE9C-315C-A67B-6DFCD49F2EF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff32202000 - 0x7fff32207ff7 com.apple.ImageCapture (9.0 - 1595) <4DB31D3F-A211-35CE-BB20-43A3DD9914F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff32208000 - 0x7fff32208fff com.apple.ink.framework (10.15 - 227) <9015AE82-2775-3885-82C4-98819F7853AA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff32209000 - 0x7fff32223ffa com.apple.openscripting (1.7 - 184) <37AC4892-F09C-37ED-8F19-8C6A344AD314> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff32244000 - 0x7fff32244fff com.apple.print.framework.Print (15 - 271) <61723454-B45E-3EF7-BD38-9FAD40341C7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff32245000 - 0x7fff32247ff7 com.apple.securityhi (9.0 - 55008) <358BED26-C2CF-387D-B49E-64F7E60DC104> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff32248000 - 0x7fff3224eff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff323e0000 - 0x7fff323e0fff com.apple.Cocoa (6.11 - 23) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff323ee000 - 0x7fff325d9ff7 com.apple.ColorSync (4.13.0 - 3390) <79625B92-460C-324D-BDDE-7A6A0BF54A02> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff328b0000 - 0x7fff32da1ffa com.apple.audio.CoreAudio (5.0 - 5.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff32df4000 - 0x7fff32e2bff8 com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff32e2c000 - 0x7fff331e6fed com.apple.CoreData (120 - 954) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff331e7000 - 0x7fff332e8ffc com.apple.CoreDisplay (1.0 - 107) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff332e9000 - 0x7fff33765ff5 com.apple.CoreFoundation (6.9 - 1659.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff33767000 - 0x7fff33dddff0 com.apple.CoreGraphics (2.0 - 1336) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff33deb000 - 0x7fff34141ff6 com.apple.CoreImage (15.0.0 - 800.6.100) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff344db000 - 0x7fff34644ff4 com.apple.CoreMedia (1.0 - 2488.4.2) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff3472c000 - 0x7fff3472cfff com.apple.CoreServices (1057.2 - 1057.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff3472d000 - 0x7fff347afff3 com.apple.AE (812 - 812) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff347b0000 - 0x7fff34a91ff7 com.apple.CoreServices.CarbonCore (1210.5 - 1210.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff34a92000 - 0x7fff34adefe9 com.apple.DictionaryServices (1.2 - 313) <82AF815E-0C4A-37CD-966C-689E0267F8EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff34adf000 - 0x7fff34ae7ff7 com.apple.CoreServices.FSEvents (1262.0.0.131.1 - 1262.0.0.131.1) <54191B78-F4C4-346B-86F9-95696A2452E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff34ae8000 - 0x7fff34d16ff4 com.apple.LaunchServices (1057.2 - 1057.2) <536217BE-8020-3BC9-ABE0-00FD8EF8B036> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff34d17000 - 0x7fff34daeff9 com.apple.Metadata (10.7.0 - 2047) <994585D0-A792-3A3F-88EF-0400C1591DE6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff34daf000 - 0x7fff34ddcff7 com.apple.CoreServices.OSServices (1057.2 - 1057.2) <1C50A557-103C-38B2-9F8C-3F1EF0928DCE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff34ddd000 - 0x7fff34e44fff com.apple.SearchKit (1.4.1 - 1.4.1) <20A992C6-2624-3230-A20C-1DF5557EE908> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff34e45000 - 0x7fff34e68ffd com.apple.coreservices.SharedFileList (127 - 127) <0F673EAD-4CDB-3A99-BCD6-F7C36877935A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff3519b000 - 0x7fff3534cff0 com.apple.CoreText (352.0 - 629.1) <8224163A-AE78-30B3-BDF5-A8E30AC1A5BD> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff3534d000 - 0x7fff35391fff com.apple.CoreVideo (1.8 - 332.0) <9D7E9592-6E7F-3640-9D96-9D8CD8E69D6E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff35392000 - 0x7fff3541fff0 com.apple.framework.CoreWLAN (13.0 - 1441) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff356bd000 - 0x7fff356c3ff7 com.apple.DiskArbitration (2.7 - 2.7) <0C322887-AADA-336A-8ADA-31D1219AD468> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff358b1000 - 0x7fff359cafff com.apple.FileProvider (226.1 - 226.1) <8F9D39E5-7F4C-3ACB-826A-CE7BFE838751> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff359e2000 - 0x7fff35da5ff0 com.apple.Foundation (6.9 - 1659.10) <625E80BA-F6A0-3A45-BDC2-AF74EF754BAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff35e12000 - 0x7fff35e41ffb com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff35f77000 - 0x7fff3608eff4 com.apple.Bluetooth (7.0.0 - 7.0.0d97) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff360f2000 - 0x7fff36194ff3 com.apple.framework.IOKit (2.0.2 - 1721) <16C005E7-0082-3DAE-A574-9056FA4F6150> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff36196000 - 0x7fff361a6ff4 com.apple.IOSurface (269.3 - 269.3) <13153527-650A-3048-93AB-2069197A057D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff36218000 - 0x7fff3636efe6 com.apple.ImageIO.framework (3.3.0 - 1960) <6AC6C5C6-9A4A-3EED-B308-AEFAEE48E4A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff3636f000 - 0x7fff36372fff libGIF.dylib (1960) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff36373000 - 0x7fff3642dfe7 libJP2.dylib (1960) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff3642e000 - 0x7fff36452fef libJPEG.dylib (1960) <54D5E544-FB55-3AF3-8D63-D93E446ADDD4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff366d0000 - 0x7fff366eafe7 libPng.dylib (1960) <8A6ADDDC-20E7-3FDD-A3EB-AE86F6AA46CE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff366eb000 - 0x7fff366ecfff libRadiance.dylib (1960) <23A6E89D-5999-358F-AC5C-90BC8BE1EA63> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff366ed000 - 0x7fff36736ff3 libTIFF.dylib (1960) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff37b36000 - 0x7fff37b48ff3 com.apple.Kerberos (3.0 - 1) <4A45B2C3-D299-35C2-8C64-8190A0074254> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff37b49000 - 0x7fff37b49fff libHeimdalProxy.dylib (77) <7CF73AD1-1431-312B-BE20-247DAFA7BE29> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff37ee2000 - 0x7fff37eecffb com.apple.MediaAccessibility (1.0 - 123) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff37fb0000 - 0x7fff38a61ffa com.apple.MediaToolbox (1.0 - 2488.4.2) <735DED05-90AC-3DC0-9DC0-332957C9036C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff38a63000 - 0x7fff38b26ff9 com.apple.Metal (211.34 - 211.34) <34C2DAB6-BD41-3A94-ACB2-EF3E5B60B5D9> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff38b43000 - 0x7fff38b7fff3 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff38b80000 - 0x7fff38c06ffe com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <16D054BF-FF50-314E-AC64-71B76D5470D1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff38c07000 - 0x7fff38c2bffc com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff38c2c000 - 0x7fff38c41ff9 com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <123A55C4-468C-3509-B7B1-55F68B5BD1A6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff38c42000 - 0x7fff38da0ff9 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <0BF1DE86-C54B-395B-A221-EF138BF81B94> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff38da1000 - 0x7fff38defff8 com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff38df0000 - 0x7fff38df1ff5 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <471E9C7F-2B91-3564-A9CE-4BA3B40D172A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff39d36000 - 0x7fff39d42ffe com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff39d43000 - 0x7fff39e86ffe com.apple.Network (1.0 - 1) <715256B2-282A-3AC4-BAD4-20835CC5B5A2> /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff3c89f000 - 0x7fff3c8f7ff7 com.apple.opencl (3.5 - 3.5) <8FF07028-D45C-3A8D-9576-5AD2C8DEC7A7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff3c8f8000 - 0x7fff3c914ff7 com.apple.CFOpenDirectory (10.15 - 220) <909D0D05-3FC2-3DFA-BFB7-6CEB4FF4F430> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff3c915000 - 0x7fff3c920fff com.apple.OpenDirectory (10.15 - 220) <77522608-A60A-36A3-9AD5-196F3B1913A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff3d27b000 - 0x7fff3d27dfff libCVMSPluginSupport.dylib (17.10.19) <6D6C4BE9-4E04-3010-9A81-F7235715F25D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff3d27e000 - 0x7fff3d283ff7 libCoreFSCache.dylib (176.1) <9988BF9F-AB03-37E5-AF00-9753DAD88A09> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff3d284000 - 0x7fff3d288fff libCoreVMClient.dylib (176.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff3d289000 - 0x7fff3d291ff7 libGFXShared.dylib (17.10.19) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff3d292000 - 0x7fff3d29cfff libGL.dylib (17.10.19) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff3d29d000 - 0x7fff3d2d2fff libGLImage.dylib (17.10.19) <663C5BD8-C569-31B7-9674-9D7B2449F614> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff3d466000 - 0x7fff3d4a2fff libGLU.dylib (17.10.19) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff3ded2000 - 0x7fff3dee1ff7 com.apple.opengl (17.10.19 - 17.10.19) <08DA2F81-2C62-3757-AADE-D00DD9512080> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff3ee62000 - 0x7fff3f0deff3 com.apple.QuartzCore (1.11 - 805) <17F35224-B294-3980-9C02-B59689434FB5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff3fc23000 - 0x7fff3fc3bffd com.apple.ScriptingBridge (1.4 - 79) <31F4B1A7-38AF-36E0-BD40-650F6B7DBEBE> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge 0x7fff3fc3c000 - 0x7fff3ff7dff2 com.apple.security (7.0 - 59286.0.0.131.1) <42D6DA38-1BC8-34B2-A8E7-ACC32E6E2CC5> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff3ff7e000 - 0x7fff40006ff7 com.apple.securityfoundation (6.0 - 55236) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff40035000 - 0x7fff40039ff8 com.apple.xpc.ServiceManagement (1.0 - 1) <4BA78A51-CDD5-3437-A880-76D20EAF1060> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff40c26000 - 0x7fff40c90fff com.apple.SystemConfiguration (1.19 - 1.19) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff40f0a000 - 0x7fff412b0ff1 com.apple.VideoToolbox (1.0 - 2488.4.2) <15E2FB24-45E9-36F2-B55C-61FAFC9DD256> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff44a9e000 - 0x7fff44b5ffe7 com.apple.APFS (1402.0.0 - 1402.0.0) <87BD0E2D-DE8C-33F9-8890-7144667FBD73> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff45b26000 - 0x7fff45b27ff1 com.apple.AggregateDictionary (1.0 - 1) <95DC3F84-5CFE-3F4C-80E7-FC33FD6FBA2F> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff45f35000 - 0x7fff45f51ff2 com.apple.AppContainer (4.0 - 442) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff45fa0000 - 0x7fff45faeff0 com.apple.AppSandbox (4.0 - 442) <4FE28617-B9A0-3270-8C64-76D6ED374568> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff46411000 - 0x7fff46435ff3 com.apple.framework.Apple80211 (13.0 - 1443) <7B6A3026-BD8A-3E3D-9CA9-5440DF7AC519> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff46567000 - 0x7fff46576fdf com.apple.AppleFSCompression (119 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff46673000 - 0x7fff4667eff1 com.apple.AppleIDAuthSupport (1.0 - 1) /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff466c0000 - 0x7fff46708fff com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff46ada000 - 0x7fff46afcffb com.apple.applesauce (1.0 - 16.22) <0095E4DE-583A-3D27-8AFC-DB3E603FFE85> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff46bc0000 - 0x7fff46c10ff7 com.apple.AppleVAFramework (6.1.2 - 6.1.2) <18F1A860-C241-32E2-8FBB-2F16A5BE795A> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff46c59000 - 0x7fff46c68ff6 com.apple.AssertionServices (1.0 - 197) <02BD6E9F-A13A-3665-BB8F-6E00493D705B> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff47174000 - 0x7fff47575ff4 com.apple.audio.AudioResourceArbitration (1.0 - 1) <70E6FE6E-F6C8-3C6A-96FC-CDB93F7F0153> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration 0x7fff477bf000 - 0x7fff479f1ffb com.apple.audio.AudioToolboxCore (1.0 - 1095) <0CE34FDB-57CB-33A5-B0C5-74AD36133CFE> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff479f2000 - 0x7fff47b00ffe com.apple.AuthKit (1.0 - 1) <5FBCC91D-55D5-3243-8F5A-E00198D676ED> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff47caf000 - 0x7fff47cb8ff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <90682D86-F993-3761-94A5-3E3C2B302B5D> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff47cb9000 - 0x7fff47d59ff2 com.apple.backup.framework (1.11 - 1280.1) <1E7B0C8A-A163-3B2B-AC00-244EF94C8463> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff47d5a000 - 0x7fff47ddaff7 com.apple.BaseBoard (451 - 451) <554428E3-2744-3537-9A0C-746C7D159DEF> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff47ede000 - 0x7fff47f1aff7 com.apple.bom (14.0 - 219) <266DA6CB-C9AF-3574-9673-63C16D1966E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff48a7f000 - 0x7fff48acefff com.apple.ChunkingLibrary (302 - 302) <373D53DF-7BBA-333B-9DD1-047805AF4161> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff499bd000 - 0x7fff499c6ff3 com.apple.CommonAuth (4.0 - 2.0) <11FD824B-3147-3CA2-BA6A-C0DD6E7CD543> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff499da000 - 0x7fff499f1ff1 com.apple.commonutilities (8.0 - 900) <9588DDE2-BE6A-3246-B84D-B1170C2276F0> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff4a0c7000 - 0x7fff4a49cfc8 com.apple.CoreAUC (280.0.0 - 280.0.0) <05623D36-133F-3684-8B83-E37C8A65E6CD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff4a49d000 - 0x7fff4a4cbffb com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <7DEB1897-88E5-366A-81DD-B7D2AA351EDA> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff4a4ee000 - 0x7fff4a50dffd com.apple.analyticsd (1.0 - 1) <50730248-E8C0-30AF-8905-FAB692A380D0> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff4aa4a000 - 0x7fff4aa5aff3 com.apple.CoreEmoji (1.0 - 98) <5618136C-90A6-35E2-A5FC-4F7784FB819B> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4b088000 - 0x7fff4b0f2ff8 com.apple.CoreNLP (1.0 - 205) /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff4b540000 - 0x7fff4b548ff8 com.apple.CorePhoneNumbers (1.0 - 1) <17BB6347-214A-3469-906E-EB9936874772> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff4bc7e000 - 0x7fff4bca1ff7 com.apple.CoreSVG (1.0 - 127) <58E48A84-27AA-3681-9C4D-86355D79FECE> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff4bca2000 - 0x7fff4bcd5fff com.apple.CoreServicesInternal (437 - 437) <5960EF8B-0D6B-32DE-91DF-8B2513F5BC9D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff4bcd6000 - 0x7fff4bd01ff0 com.apple.CSStore (1057.2 - 1057.2) /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff4c1e5000 - 0x7fff4c26aff7 com.apple.CoreSymbolication (11.0 - 64509.88.1) <02E1BBCF-E98D-3109-B7BA-0EC84424EE3E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff4c302000 - 0x7fff4c42cff3 com.apple.coreui (2.1 - 576) <08783C68-7DCC-35FF-9496-028B82374E7F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff4c42d000 - 0x7fff4c5c9ffe com.apple.CoreUtils (6.0 - 600.4) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff4c6fc000 - 0x7fff4c70fff1 com.apple.CrashReporterSupport (10.13 - 15004) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff4c96f000 - 0x7fff4c97effc com.apple.framework.DFRFoundation (1.0 - 227.1) /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff4c97f000 - 0x7fff4c984ffb com.apple.DSExternalDisplay (3.1 - 380) <032793F8-4EC7-390B-B418-6224B2C4FFCE> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff4c9ed000 - 0x7fff4ca68ff8 com.apple.datadetectorscore (8.0 - 655) <5A6D0688-F370-3321-8AC7-2271779A764B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff4cab4000 - 0x7fff4caf2ff0 com.apple.DebugSymbols (194 - 194) <4060D70C-AC25-3999-ABB6-CAE957AFFA58> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff4caf3000 - 0x7fff4cc76ff4 com.apple.desktopservices (1.14 - 1265.2) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff4e32f000 - 0x7fff4e74aff9 com.apple.vision.FaceCore (4.3.0 - 4.3.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff4ed81000 - 0x7fff4eeb8ffc libFontParser.dylib (266) <3A0F812A-836C-3639-BFF6-7D24F969FE62> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff4ef52000 - 0x7fff4ef5fff4 libhvf.dylib (266) <8E64185B-8938-347A-A7E2-EEBD089C1B7D> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff53ad0000 - 0x7fff53ad5ff7 com.apple.GPUWrangler (4.1.30 - 4.1.30) <6993BD8C-C535-3AD7-B511-94EABF989658> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff53dee000 - 0x7fff53e13ff0 com.apple.GenerationalStorage (2.0 - 308) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff54eb9000 - 0x7fff54ec7ffb com.apple.GraphVisualizer (1.0 - 100.1) <670ECAE4-0ED9-3A32-B7F7-EB521B0DE037> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff55053000 - 0x7fff550c6ff4 com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff57125000 - 0x7fff5712dff5 com.apple.IOAccelerator (438.1.11 - 438.1.11) <70B8B90C-3671-3209-9E90-1F9B9AC38A98> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff57130000 - 0x7fff57146ff7 com.apple.IOPresentment (1.0 - 37) /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff574b1000 - 0x7fff57526ff2 com.apple.IconServices (427.2 - 427.2) <86A86465-48D2-3F1A-A727-C0D153F6862B> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff576dd000 - 0x7fff576e3ff4 com.apple.InternationalSupport (1.0 - 39) <5768D975-FAB9-3EBA-AEA8-631F0E9DF01B> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff57921000 - 0x7fff57941ff6 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <6D11600B-53CE-319C-A3C9-147FAAB74AEF> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff57a98000 - 0x7fff57b5cffd com.apple.LanguageModeling (1.0 - 209) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff57b5d000 - 0x7fff57babfff com.apple.Lexicon-framework (1.0 - 68) <570233F2-2768-3F44-8E45-0F55B4EDA00F> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff57bb2000 - 0x7fff57bb6ff6 com.apple.LinguisticData (1.0 - 324) /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff58438000 - 0x7fff5843bfff com.apple.Mangrove (1.0 - 25) /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff58677000 - 0x7fff58727ff4 com.apple.MediaExperience (1.0 - 1) <569F6623-841B-3C54-AF1F-CCC5B3809D06> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience 0x7fff58ebc000 - 0x7fff58f06ff7 com.apple.spotlight.metadata.utilities (1.0 - 2047) <125064FB-98F9-3B7D-A34F-4274621C8D19> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff58f07000 - 0x7fff58fd5ffc com.apple.gpusw.MetalTools (1.0 - 1) <858AD9BD-4818-366B-A41A-2BA5E4FA5CD4> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff591ee000 - 0x7fff5920bff4 com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff59477000 - 0x7fff594a4ff7 com.apple.MultitouchSupport.framework (3000.28 - 3000.28) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5990a000 - 0x7fff59914fff com.apple.NetAuth (6.2 - 6.2) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5a233000 - 0x7fff5a27fff7 com.apple.OTSVG (1.0 - 629.1) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff5b3c6000 - 0x7fff5b3d1ffe com.apple.PerformanceAnalysis (1.239 - 239) <4383316A-648E-3D12-AA52-66DDB5DE90CF> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff5b3d2000 - 0x7fff5b3faff8 com.apple.persistentconnection (1.0 - 1.0) <69C62C14-AF5A-34A6-B725-5A1E83F8B344> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff5dc0a000 - 0x7fff5dc23fff com.apple.ProtocolBuffer (1 - 272.20.6.18.1) <5A7F194B-EBC2-376B-84A3-1AF9A18E954B> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff5e04d000 - 0x7fff5e076ff9 com.apple.RemoteViewServices (2.0 - 147) <4B5F70B8-1AE7-3C55-B9A3-ED7242C5C519> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff5e1d5000 - 0x7fff5e210ff6 com.apple.RunningBoardServices (1.0 - 197) <25475FD5-2B7D-38A0-97C0-D6222CA38554> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff5fac5000 - 0x7fff5fac8ff9 com.apple.SecCodeWrapper (4.0 - 442) <1C6B25DD-8DA8-317A-80AC-2DFE12D751B4> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff5fc03000 - 0x7fff5fd1dff7 com.apple.Sharing (1421 - 1421) <3578D44D-CEF0-3186-8064-929B1691B280> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff60d13000 - 0x7fff61002ffd com.apple.SkyLight (1.600.0 - 427) <34A5C504-D46F-3182-80D4-CBDD1CD05582> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff61846000 - 0x7fff61853fff com.apple.SpeechRecognitionCore (6.0.61 - 6.0.61) <508B0DC4-4E3E-32BF-96D1-372050A6A29C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff6205a000 - 0x7fff62063fff com.apple.SymptomDiagnosticReporter (1.0 - 1227) /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff6230b000 - 0x7fff6231bff3 com.apple.TCC (1.0 - 1) <2AD2BD7F-85C4-386E-85C3-B2C04BE285C5> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff627f7000 - 0x7fff628beff4 com.apple.TextureIO (3.10.9 - 3.10.9) <9CF9EF41-AD90-303B-9BA9-9533C6812879> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff63e38000 - 0x7fff6408aff5 com.apple.UIFoundation (1.0 - 628) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff64c60000 - 0x7fff64c7fff3 com.apple.UserManagement (1.0 - 1) /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement 0x7fff65a20000 - 0x7fff65afaff1 com.apple.ViewBridge (442 - 442) <2C2ABE74-3A17-3821-81E0-DCB7C3142C33> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff65c91000 - 0x7fff65c92fff com.apple.WatchdogClient.framework (1.0 - 65) /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff667e5000 - 0x7fff667e8ffa com.apple.dt.XCTTargetBootstrap (1.0 - 14761.2) <47A94900-619A-3EC4-A310-101FAE5F55B4> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff66860000 - 0x7fff6686eff1 com.apple.audio.caulk (1.0 - 29) <1423116B-BA34-34AF-ACE8-801DE61CE960> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff66f3b000 - 0x7fff66f3dff3 com.apple.loginsupport (1.0 - 1) <48F44E32-197C-3CAE-9D14-DE41DE3BB09D> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff67248000 - 0x7fff6727dff2 libAudioToolboxUtility.dylib (1095) /usr/lib/libAudioToolboxUtility.dylib 0x7fff67284000 - 0x7fff672b9ff7 libCRFSuite.dylib (48) <517F8C73-8095-34B5-9377-2B55B6CF175B> /usr/lib/libCRFSuite.dylib 0x7fff672bc000 - 0x7fff672c6ff3 libChineseTokenizer.dylib (34) <7897FA27-D282-3F6C-AB6A-3AD05D232832> /usr/lib/libChineseTokenizer.dylib 0x7fff67353000 - 0x7fff67355fff libDiagnosticMessagesClient.dylib (112) /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff67390000 - 0x7fff6753bffb libFosl_dynamic.dylib (100.3) /usr/lib/libFosl_dynamic.dylib 0x7fff67563000 - 0x7fff67569ff3 libIOReport.dylib (54) <4DDF12BC-86B1-344D-87C3-CBB90213E765> /usr/lib/libIOReport.dylib 0x7fff67647000 - 0x7fff6764efff libMatch.1.dylib (36) <1F392304-4215-323D-861C-D1BE077DF07B> /usr/lib/libMatch.1.dylib 0x7fff6767e000 - 0x7fff6769dfff libMobileGestalt.dylib (815) /usr/lib/libMobileGestalt.dylib 0x7fff67804000 - 0x7fff67805ff3 libSystem.B.dylib (1281) /usr/lib/libSystem.B.dylib 0x7fff67895000 - 0x7fff67896fff libThaiTokenizer.dylib (3) <53E4FF60-042D-35EF-9E17-BCA6602287DC> /usr/lib/libThaiTokenizer.dylib 0x7fff678ae000 - 0x7fff678c4fff libapple_nghttp2.dylib (1.39.1) /usr/lib/libapple_nghttp2.dylib 0x7fff678f9000 - 0x7fff6796bfff libarchive.2.dylib (70) <1E6E2597-0829-33D9-A8D8-817644CF230C> /usr/lib/libarchive.2.dylib 0x7fff6796c000 - 0x7fff67a02fc5 libate.dylib (2.0.8) <0A487F4C-D47C-39D1-BC28-13690C1A4C90> /usr/lib/libate.dylib 0x7fff67a06000 - 0x7fff67a06ff3 libauto.dylib (187) <3E80775A-DCB3-3C43-A0D0-34A24E418F9E> /usr/lib/libauto.dylib 0x7fff67ac1000 - 0x7fff67ad1fff libbsm.0.dylib (60) <3D83D150-3F70-3115-8C08-571BFEEFD9F8> /usr/lib/libbsm.0.dylib 0x7fff67ad2000 - 0x7fff67adefff libbz2.1.0.dylib (44) <4548FDE9-E93F-3497-B21E-D4602C511714> /usr/lib/libbz2.1.0.dylib 0x7fff67adf000 - 0x7fff67b32fff libc++.1.dylib (800.6) <72B22F02-0E50-3E3A-9B96-D0CE356E09C8> /usr/lib/libc++.1.dylib 0x7fff67b33000 - 0x7fff67b47fff libc++abi.dylib (800.7) <72EE3F51-C972-3902-B2FE-544FF43CBDA9> /usr/lib/libc++abi.dylib 0x7fff67b48000 - 0x7fff67b48ffb libcharset.1.dylib (59) /usr/lib/libcharset.1.dylib 0x7fff67b49000 - 0x7fff67b5affb libcmph.dylib (8) <10E9B8A6-2257-3B81-9CDD-608A775EE1BE> /usr/lib/libcmph.dylib 0x7fff67b5b000 - 0x7fff67b72fe7 libcompression.dylib (85) /usr/lib/libcompression.dylib 0x7fff67e24000 - 0x7fff67e3afff libcoretls.dylib (167) <2399813B-6CE9-315F-994D-9B1848724EB9> /usr/lib/libcoretls.dylib 0x7fff67e3b000 - 0x7fff67e3cffb libcoretls_cfhelpers.dylib (167) <8211F323-B51B-3A3A-8F46-6D2673E81503> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff683f8000 - 0x7fff68457fff libcups.2.dylib (482) <493B6BF6-967C-31E1-8D4B-28C232DEE81D> /usr/lib/libcups.2.dylib 0x7fff68563000 - 0x7fff68563ff3 libenergytrace.dylib (21) <3E8A4AEA-E50D-3F6D-810C-015CB17E6D1E> /usr/lib/libenergytrace.dylib 0x7fff68564000 - 0x7fff6857dff7 libexpat.1.dylib (19) /usr/lib/libexpat.1.dylib 0x7fff6858b000 - 0x7fff6858cfff libfakelink.dylib (141) /usr/lib/libfakelink.dylib 0x7fff6859b000 - 0x7fff685a0fff libgermantok.dylib (24) /usr/lib/libgermantok.dylib 0x7fff685a1000 - 0x7fff685a5fff libheimdal-asn1.dylib (562) /usr/lib/libheimdal-asn1.dylib 0x7fff685a6000 - 0x7fff68696ff7 libiconv.2.dylib (59) /usr/lib/libiconv.2.dylib 0x7fff68697000 - 0x7fff688efff7 libicucore.A.dylib (64217.0.1) /usr/lib/libicucore.A.dylib 0x7fff68909000 - 0x7fff6890afff liblangid.dylib (133) /usr/lib/liblangid.dylib 0x7fff6890b000 - 0x7fff68923ffb liblzma.5.dylib (16) <2A3BB5D7-5F62-3F85-9E75-0842C8A92ED4> /usr/lib/liblzma.5.dylib 0x7fff6893a000 - 0x7fff689e2fff libmecab.dylib (867) /usr/lib/libmecab.dylib 0x7fff689e3000 - 0x7fff68c3eff9 libmecabra.dylib (867) <3918E406-FF8A-34C6-A028-1E2FB96F4F90> /usr/lib/libmecabra.dylib 0x7fff68f9e000 - 0x7fff68fcdff7 libncurses.5.4.dylib (57) <432C45AD-54D9-35B0-912C-42974FA0DD21> /usr/lib/libncurses.5.4.dylib 0x7fff690fc000 - 0x7fff69565ffb libnetwork.dylib (1859) /usr/lib/libnetwork.dylib 0x7fff69603000 - 0x7fff69634ffe libobjc.A.dylib (777) /usr/lib/libobjc.A.dylib 0x7fff69646000 - 0x7fff6964afff libpam.2.dylib (25) /usr/lib/libpam.2.dylib 0x7fff6964d000 - 0x7fff69680fff libpcap.A.dylib (88) /usr/lib/libpcap.A.dylib 0x7fff69702000 - 0x7fff6971aff7 libresolv.9.dylib (67) /usr/lib/libresolv.9.dylib 0x7fff6971c000 - 0x7fff6975ffff libsandbox.1.dylib (1202.0.0.131.1) <79D4852F-A637-32D0-877B-F6A06289C978> /usr/lib/libsandbox.1.dylib 0x7fff69773000 - 0x7fff69774ff7 libspindump.dylib (278) <187CFF9E-C9C0-3D62-9B9F-26FB798B7A33> /usr/lib/libspindump.dylib 0x7fff69775000 - 0x7fff69963fef libsqlite3.dylib (304.1) /usr/lib/libsqlite3.dylib 0x7fff69bb2000 - 0x7fff69bb5ffb libutil.dylib (57) <5649AA0D-1ECD-33C8-88F7-5B63BFC79808> /usr/lib/libutil.dylib 0x7fff69bb6000 - 0x7fff69bc3ff7 libxar.1.dylib (419.3) /usr/lib/libxar.1.dylib 0x7fff69bc8000 - 0x7fff69caaff7 libxml2.2.dylib (32.10) /usr/lib/libxml2.2.dylib 0x7fff69cae000 - 0x7fff69cd6fff libxslt.1.dylib (16.5) /usr/lib/libxslt.1.dylib 0x7fff69cd7000 - 0x7fff69ce9fff libz.1.dylib (76) <7AF180DF-A06B-3ACE-8860-83C87E78B4A3> /usr/lib/libz.1.dylib 0x7fff6a72f000 - 0x7fff6a734ff7 libcache.dylib (83) <2C4CEBF8-B612-378F-A0F8-929A9ED53C06> /usr/lib/system/libcache.dylib 0x7fff6a735000 - 0x7fff6a740ff7 libcommonCrypto.dylib (60158) /usr/lib/system/libcommonCrypto.dylib 0x7fff6a741000 - 0x7fff6a748fff libcompiler_rt.dylib (101.1) <770CC8CE-28C2-3F3F-BAB1-F9046F4FEE47> /usr/lib/system/libcompiler_rt.dylib 0x7fff6a749000 - 0x7fff6a752ff7 libcopyfile.dylib (166) <36A3D174-2124-3CE4-8959-530F17723AB7> /usr/lib/system/libcopyfile.dylib 0x7fff6a753000 - 0x7fff6a7eafdb libcorecrypto.dylib (849) <476487FB-5615-39B1-AA65-086A117251AC> /usr/lib/system/libcorecrypto.dylib 0x7fff6a901000 - 0x7fff6a942ff8 libdispatch.dylib (1171) /usr/lib/system/libdispatch.dylib 0x7fff6a943000 - 0x7fff6a978fff libdyld.dylib (729) /usr/lib/system/libdyld.dylib 0x7fff6a979000 - 0x7fff6a979ffb libkeymgr.dylib (30) <25152526-62D8-3844-9999-A64CDD9147F4> /usr/lib/system/libkeymgr.dylib 0x7fff6a97a000 - 0x7fff6a986ff7 libkxld.dylib (6153.0.13.131.3) <21BF5CD3-596B-342D-9F16-A3E7AAF4C116> /usr/lib/system/libkxld.dylib 0x7fff6a987000 - 0x7fff6a987ff7 liblaunch.dylib (1725) <2244713E-55CA-3BC7-9C0E-9380D82DFD31> /usr/lib/system/liblaunch.dylib 0x7fff6a988000 - 0x7fff6a98dff7 libmacho.dylib (948) <11F5B999-35EA-3008-82C9-F0675370A18E> /usr/lib/system/libmacho.dylib 0x7fff6a98e000 - 0x7fff6a990ffb libquarantine.dylib (109) /usr/lib/system/libquarantine.dylib 0x7fff6a991000 - 0x7fff6a992ff7 libremovefile.dylib (48) <2346958B-18AF-3378-B229-8537E192AA3C> /usr/lib/system/libremovefile.dylib 0x7fff6a993000 - 0x7fff6a9aaff7 libsystem_asl.dylib (377) <42B717F2-9FDC-3B33-92FD-94C0DBD4BB6E> /usr/lib/system/libsystem_asl.dylib 0x7fff6a9ab000 - 0x7fff6a9abfff libsystem_blocks.dylib (74) <819169C7-8261-3617-B7D8-368994E8F93C> /usr/lib/system/libsystem_blocks.dylib 0x7fff6a9ac000 - 0x7fff6aa33fff libsystem_c.dylib (1351) <67807E19-1810-3591-8F43-1C6C06FD401E> /usr/lib/system/libsystem_c.dylib 0x7fff6aa34000 - 0x7fff6aa37fff libsystem_configuration.dylib (1057) <5FB20C67-7954-320A-B565-311500815F3D> /usr/lib/system/libsystem_configuration.dylib 0x7fff6aa38000 - 0x7fff6aa3bff7 libsystem_coreservices.dylib (111) /usr/lib/system/libsystem_coreservices.dylib 0x7fff6aa3c000 - 0x7fff6aa43ff7 libsystem_darwin.dylib (1351) <0C387714-19C2-3D3D-A0F5-0CE333D16EBC> /usr/lib/system/libsystem_darwin.dylib 0x7fff6aa44000 - 0x7fff6aa4bff7 libsystem_dnssd.dylib (1086) <5AE650F6-EEF1-38F5-827E-87D44E523F6E> /usr/lib/system/libsystem_dnssd.dylib 0x7fff6aa4c000 - 0x7fff6aa4dffb libsystem_featureflags.dylib (17) /usr/lib/system/libsystem_featureflags.dylib 0x7fff6aa4e000 - 0x7fff6aa9bff7 libsystem_info.dylib (538) <2388D8A0-25CD-3CC4-B84B-1C03A4D85E7A> /usr/lib/system/libsystem_info.dylib 0x7fff6aa9c000 - 0x7fff6aac8fff libsystem_kernel.dylib (6153.0.13.131.3) <98C1DF48-C756-3EEC-841E-184DA646FD7F> /usr/lib/system/libsystem_kernel.dylib 0x7fff6aac9000 - 0x7fff6ab10ff7 libsystem_m.dylib (3178) <4FDB9829-D710-310E-BB1D-E4D9ABDCF018> /usr/lib/system/libsystem_m.dylib 0x7fff6ab11000 - 0x7fff6ab38fff libsystem_malloc.dylib (282) <652D5556-6D2A-39BA-938F-1DBD08D2BFDE> /usr/lib/system/libsystem_malloc.dylib 0x7fff6ab39000 - 0x7fff6ab46ff7 libsystem_networkextension.dylib (1076.0.0.131.1) <9DDBCC33-275D-3766-A861-D1484E89F09D> /usr/lib/system/libsystem_networkextension.dylib 0x7fff6ab47000 - 0x7fff6ab50fff libsystem_notify.dylib (241) /usr/lib/system/libsystem_notify.dylib 0x7fff6ab51000 - 0x7fff6ab5afe7 libsystem_platform.dylib (219) /usr/lib/system/libsystem_platform.dylib 0x7fff6ab5b000 - 0x7fff6ab65fff libsystem_pthread.dylib (411) /usr/lib/system/libsystem_pthread.dylib 0x7fff6ab66000 - 0x7fff6ab6affb libsystem_sandbox.dylib (1202.0.0.131.1) /usr/lib/system/libsystem_sandbox.dylib 0x7fff6ab6b000 - 0x7fff6ab6dfff libsystem_secinit.dylib (61.0.0.0.1) /usr/lib/system/libsystem_secinit.dylib 0x7fff6ab6e000 - 0x7fff6ab75ffb libsystem_symptoms.dylib (1227) <6C990220-0516-3A30-8930-282C5F9FAEFA> /usr/lib/system/libsystem_symptoms.dylib 0x7fff6ab76000 - 0x7fff6ab8cffa libsystem_trace.dylib (1141) <6BF77B8A-2FB2-31C3-8BE3-8186C7F1930D> /usr/lib/system/libsystem_trace.dylib 0x7fff6ab8e000 - 0x7fff6ab93ffb libunwind.dylib (35.4) /usr/lib/system/libunwind.dylib 0x7fff6ab94000 - 0x7fff6abc8ff6 libxpc.dylib (1725) <5321C905-18A7-3566-9831-441CCFC2E794> /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 1 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 238473 thread_create: 51 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=534.6M resident=0K(0%) swapped_out_or_unallocated=534.6M(100%) Writable regions: Total=142.4M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=142.4M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Activity Tracing 256K 1 Dispatch continuations 24.0M 1 Kernel Alloc Once 8K 1 MALLOC 108.4M 33 MALLOC guard page 16K 4 Memory Tag 242 12K 1 STACK GUARD 56.0M 4 Stack 9752K 4 VM_ALLOCATE 48K 3 __DATA 23.3M 273 __DATA_CONST 24K 2 __FONT_DATA 4K 1 __LINKEDIT 353.5M 3 __OBJC_RO 30.9M 1 __OBJC_RW 1700K 2 __TEXT 181.1M 276 __UNICODE 564K 1 mapped file 42.9M 9 shared memory 648K 14 =========== ======= ======= TOTAL 832.9M 634 System Profile: Network Service: Wi-Fi, AirPort, en0 bridge_os_version: Bridge OS 4.0 (17P50496d) Boot Volume File System Type: apfs bridge_model: iBridge2,3 Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1 Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1 USB Device: USB 3.1 Bus USB Device: Apple T2 Bus USB Device: Touch Bar Backlight USB Device: Touch Bar Display USB Device: Apple Internal Keyboard / Trackpad USB Device: Headset USB Device: Ambient Light Sensor USB Device: FaceTime HD Camera (Built-in) USB Device: Apple T2 Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 42.1 Thunderbolt Bus: MacBook Pro, Apple Inc., 42.1 Model: MacBookPro15,1, BootROM 1030.0.0.0.1 (iBridge: 17.16.10496.5.4,0), 6 processors, Intel Core i9, 2,9 GHz, 16 GB, SMC Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin Graphics: kHW_AMDRadeonPro560XItem, Radeon Pro 560X, spdisplays_pcie_device, 4 GB AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Jun 24 2019 20:22:56 version 9.30.350.2.32.5.27 FWID 01-663698a2 Bluetooth: Version 7.0.0d97, 3 services, 27 devices, 1 incoming serial ports ```
MrSunshyne commented 5 years ago

When trying to install I get this message :

==> Installing yabai from koekeishiya/formulae
Error: Your Xcode (10.2.1) is too outdated.
Please update to Xcode 11.0 (or delete it).

Should I actually update to xcode 11 ?