Jump to content

1.0 - Constant crashing on OS X


Recommended Posts

Hi.

KSP crashed in VAB while i tried to move the whole rocket upwards. Memory was about 2.03 GB.

I'm having the same issue once KSP hits exactly 2.03GB according to Activity Monitor. And I thought the ~3.8GB 32-bit limit of the olden days was bad. :P

Happens both with and without mods, and it's always a malloc (out of memory) error. Only started with v1.0 (v0.90 was fine). Happens on the pad, in the VAB, at KSC switching between buildings, all at random.

This is happening on KSP v1.0.2, OS X 10.10.3. I no longer have my log but I'm guessing Squad already has enough data from the last eight pages of comments. (If not, let me know and I'll reinstall KSP and replicate the error).

I *still* haven't left the launchpad yet, and v1 has been out for a fortnight. :(

EDIT: Just read a few pages and realise you don't have enough info.

Late 2013 27" iMac

3.5 GHz Intel Core i7

NVIDIA GeForce GTX 780M 4096 MB

iMac resolution 2560x1440. Second monitor 1080p (OS X won't tell me what the pixel dimensions are, sadly). KSP is running in full-screen mode on the iMac's display, also at 2560x1440)

32 GB RAM

Mac OS X 10.10.3

Screen%20Shot%202015-05-11%20at%2010.31.59%20am.png

Edited by DavidHunter
Link to comment
Share on other sites

I'm having the same issue once KSP hits exactly 2.03GB according to Activity Monitor. And I thought the ~3.8GB 32-bit limit of the olden days was bad. :P

This is exactly the problem.

I've been looking at this for the better part of today, and I have come to the conclusion that while memory leaks could be part of the reason there are almost no true memory leaks. The 'leaks' utility only finds about ~5MB of truly leaked memory (no pointers to malloc-ed regions), and Instruments agrees.

However, there is an extremely large amount of shared memory with IOKit, 1.3GB. Running: sudo dtrace -n 'fbt::*clientMemoryForType*:entry', finds many calls to:

245908 _ZN15IOAccelContext219clientMemoryForTypeEjPjPP18IOMemoryDescriptor:entry

255005 _ZN29IOFramebufferSharedUserClient19clientMemoryForTypeEjPjPP18IOMemoryDescriptor:entry

Which will quickly fill up the virtual memory space. Fundamentally there isn't really a memory problem, and certainly not an actual physical memory problem. The problem is that many features were added recently that takes up a lot of virtual memory and IOKit is being very liberal with its shared memory usage. The only real solution to this problem is making KSP a 64 bit process. The developers can patch around the limit but that's not really fixing anything...

vmmap says:


REGION TYPE VIRTUAL
=========== =======
CG backing stores 20.2M
CG image 60K
CG shared images 240K
CoreUI image data 104K
[B]IOKit 1.2G[/B]
Kernel Alloc Once 4K
MALLOC 1.1G see MALLOC ZONE table below
MALLOC (admin) 64K
MALLOC freed, no zone 12.4M
Memory Tag 242 12K
OpenCL 16K
OpenGL GLSL 128K
STACK GUARD 56.1M
Stack 15.2M
VM_ALLOCATE 450.1M
VM_ALLOCATE (freed) 12K
VM_ALLOCATE (reserved) 4K reserved VM address space (unallocated)
__DATA 15.4M
__GLSLBUILTINS 2588K
__IMAGE 528K
__LINKEDIT 50.2M
__OBJC 2484K
__TEXT 172.3M
__UNICODE 544K
mapped file 64.0M
shared memory 68K
=========== =======
TOTAL 3.2G
TOTAL, minus reserved VM space 3.2G


VIRTUAL ALLOCATION BYTES
MALLOC ZONE SIZE COUNT ALLOCATED % FULL
=========== ======= ========= ========= ======
DefaultMallocZone_0x157c000 688.0M 430535 640.8M 93%
GFXMallocZone_0x1766000 446.1M 27621 380.5M 85%
DispatchContinuations_0x1782000 8192K 107 7K 0%
CoreGraphics_0x1809800 72K 626 13K 18%
QuartzCore_0x9013a00 16K 2 112 0%
=========== ======= ========= ========= ======
TOTAL 1.1G 458891 1.0G 89%

Which is from the main screen. That only leaves about 800MB of virtual address space. I'd wager that the Windows and Linux ports suffer from the same problem, but just have less virtual address space pressure.

Link to comment
Share on other sites

Sadly, I am also getting regular crashes (usually when transferring between different screens - e.g. from the VAB to the main screen, or after recovering a vessel). Turning down the texture quality to Quarter res extends the mean time between crashes, at the cost of enjoyment of the game. I am happy to post logs next time it happens (which will be this evening if I can bring myself to play), but for now I would just like to express my disappointment. I have been with the game since v0.19, and in all that time I've been able to run upwards of 40 mods without suffering more than the odd glitch and by keeping an eye on memory usage, but now I can barely play the game in an unmodded state. The game is not release-worthy at this stage, and was clearly not tested properly, which is disappointing considering the excellent development process over the last few years.

Link to comment
Share on other sites

That only leaves about 800MB of virtual address space. I'd wager that the Windows and Linux ports suffer from the same problem, but just have less virtual address space pressure.

I'm having the same problem as everyone else on a Mac Pro from 2009 I think. (Writing this on my ipad, so I don't have my specs right now.) I was just thinking, if this is a VM issue, maybe the difference between those having this issue and those who don't might be other things that take up VM, gadgets for example, or spaces. I'm quite spaces happy and uses about 5-6 spaces regurlarly (but only 4-5 gadgets). I also run about 6-7 programs (like aperture, spotify, firefox etc) at any given moment. Could that be the reason for VM filling up more quickly?

Link to comment
Share on other sites

There's a fair amount of evidence in this thread that some installs of KSP use quite a bit more memory than others. KSP is filling up it's virtual machine space by itself. Probably a good thing, seeing as user space processes are normally limited to their own virtual machines.

Link to comment
Share on other sites

The only real solution to this problem is making KSP a 64 bit process. The developers can patch around the limit but that's not really fixing anything...

That being the case, am I right in thinking that Unity 5 is 64bit?

I know Squad said that the Unity 5 release was too late to be incorporated into KSP v1 but that it would be implemented asap afterwards. Hopefully when the v1 hullaballoo has died down and we get back to regular DevNotes there may be some indication that there is hope on the horizon?

Until then I'm back to 0.25 as the last playable version for my setup.

Link to comment
Share on other sites

That being the case, am I right in thinking that Unity 5 is 64bit?

I know Squad said that the Unity 5 release was too late to be incorporated into KSP v1 but that it would be implemented asap afterwards. Hopefully when the v1 hullaballoo has died down and we get back to regular DevNotes there may be some indication that there is hope on the horizon?

Until then I'm back to 0.25 as the last playable version for my setup.

The fact that unity 5 is 64bit does not mean that it can be used to create stable 64-bit windows games. Unity was pumping out stable 64-but linux builds before 5. Unity5 will certainly be better, but don't assume that it will fix all the issues.

Link to comment
Share on other sites

A major issue is probably that 32-bit software has been obsolete in the OS X world for a long time. The people at Apple haven't seriously considered the possibility that someone might still be writing memory-intensive 32-bit software in the 2010s. As a result, the latest versions of OS X don't really consider address space a scarce resource. If you have 128 TB of virtual address space for the process, it doesn't matter if the operating system maps a gigabyte or two for shared resources. This doesn't work so well with 32-bit software, but from Apple's perspective, all memory-intensive software has been updated to 64-bit years ago.

Link to comment
Share on other sites

Hi there.

Another crash report. This time i was in Map view, orbiting around kerbin. Memory was somewhere around 2 GB. Because it crashed, i don't know exactly. The last time i checked the activity monitor it was at 1.96.

Mods: Kerbal Engineer and kOS

Process: KSP [5304]

Path: /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/MacOS/KSP

Identifier: unity.Squad.Kerbal Space Program

Version: Unity Player version 4.6.4f1 (4.6.4f1)

Code Type: X86 (Native)

Parent Process: ??? [1]

Responsible: KSP [5304]

User ID: 501

Date/Time: 2015-05-14 22:29:52.680 +0200

OS Version: Mac OS X 10.10.3 (14D136)

Report Version: 11

Anonymous UUID: C2F8D229-CD6D-B734-C647-2BE6C5747D79

Sleep/Wake UUID: 3C8613CA-983B-4810-B595-F161A0211834

Time Awake Since Boot: 93000 seconds

Time Since Wake: 19000 seconds

Crashed Thread: 0 MainThrd Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGABRT)

Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:

-->

__TEXT 0000000000001000-0000000000b80000 [ 11.5M] r-x/rwx SM=COW /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/MacOS/KSP

Application Specific Information:

abort() called

Thread 0 Crashed:: MainThrd Dispatch queue: com.apple.main-thread

0 libsystem_kernel.dylib 0x922aa69a __pthread_kill + 10

1 libsystem_pthread.dylib 0x96766f19 pthread_kill + 101

2 libsystem_c.dylib 0x90578eee abort + 156

3 libmono.0.dylib 0x0135c51d mono_handle_native_sigsegv + 881

4 libmono.0.dylib 0x01395c3a sigabrt_signal_handler + 99

5 libsystem_platform.dylib 0x9094703b _sigtramp + 43

6 ??? 0xffffffff 0 + 4294967295

7 libmono.0.dylib 0x01395bd7 sigusr1_signal_handler + 159

8 libsystem_c.dylib 0x90578eee abort + 156

9 unity.Squad.Kerbal Space Program 0x0034a822 HandleSignal(int, __siginfo*, void*) + 34

10 libmono.0.dylib 0x0139581a mono_chain_signal + 76

11 libmono.0.dylib 0x012dfae2 mono_sigsegv_signal_handler + 234

12 libsystem_platform.dylib 0x9094703b _sigtramp + 43

13 ??? 0xffffffff 0 + 4294967295

14 libmono.0.dylib 0x012df9f8 mono_sigill_signal_handler + 59

15 libRIP.A.dylib 0x92174c38 ripc_Initialize + 99

16 libRIP.A.dylib 0x92174521 __CGBitmapContextDelegateCreate + 77

17 com.apple.CoreGraphics 0x916cc8af bitmap_context_create + 125

18 com.apple.CoreGraphics 0x916cc325 CGBitmapContextCreateWithData + 201

19 com.apple.CoreGraphics 0x916cc254 CGBitmapContextCreate + 78

20 com.apple.CoreGraphics 0x917695aa CGSRegisterCursorWithImages + 419

21 com.apple.AppKit 0x9b7cfe3e -[NSCursor _reallySet] + 936

22 com.apple.AppKit 0x9b7cfa65 -[NSCursor set] + 235

23 unity.Squad.Kerbal Space Program 0x00674ee1 Cursors::ResetCursor() + 225

24 unity.Squad.Kerbal Space Program 0x0065e59f -[PlayerAppDelegate UpdatePlayer] + 63

25 com.apple.Foundation 0x91b6e6cf __NSFireTimer + 119

26 com.apple.CoreFoundation 0x97075006 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22

27 com.apple.CoreFoundation 0x97074ab4 __CFRunLoopDoTimer + 1316

28 com.apple.CoreFoundation 0x970f054f __CFRunLoopDoTimers + 351

29 com.apple.CoreFoundation 0x9702c531 __CFRunLoopRun + 2081

30 com.apple.CoreFoundation 0x9702baa6 CFRunLoopRunSpecific + 390

31 com.apple.CoreFoundation 0x9702b90b CFRunLoopRunInMode + 123

32 com.apple.HIToolbox 0x9689e8f8 RunCurrentEventLoopInMode + 262

33 com.apple.HIToolbox 0x9689e631 ReceiveNextEventCommon + 494

34 com.apple.HIToolbox 0x9689e42c _BlockUntilNextEventMatchingListInModeWithFilter + 99

35 com.apple.AppKit 0x9b725721 _DPSNextEvent + 742

36 com.apple.AppKit 0x9b724dc5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 350

37 com.apple.AppKit 0x9b71977c -[NSApplication run] + 907

38 com.apple.AppKit 0x9b68ebc0 NSApplicationMain + 2082

39 unity.Squad.Kerbal Space Program 0x0065e3ab PlayerMain(int, char const**) + 731

40 unity.Squad.Kerbal Space Program 0x00003095 start + 53

Thread 1:: Dispatch queue: com.apple.libdispatch-manager

0 libsystem_kernel.dylib 0x922ab8ce kevent64 + 10

1 libdispatch.dylib 0x9226d73f _dispatch_mgr_invoke + 245

2 libdispatch.dylib 0x9226d3a2 _dispatch_mgr_thread + 52

Thread 2:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 libmono.0.dylib 0x01480a55 mono_sem_wait + 33

2 libmono.0.dylib 0x013c6cc1 finalizer_thread + 219

3 libmono.0.dylib 0x014438f5 start_wrapper + 534

4 libmono.0.dylib 0x01477334 thread_start_routine + 265

5 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

6 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

7 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

8 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 3:: UnityLookForNewInputDevices

0 libsystem_kernel.dylib 0x922a49ce mach_msg_trap + 10

1 libsystem_kernel.dylib 0x922a3a70 mach_msg + 68

2 com.apple.CoreFoundation 0x9702cef6 __CFRunLoopServiceMachPort + 214

3 com.apple.CoreFoundation 0x9702c309 __CFRunLoopRun + 1529

4 com.apple.CoreFoundation 0x9702baa6 CFRunLoopRunSpecific + 390

5 com.apple.CoreFoundation 0x970ef5c1 CFRunLoopRun + 129

6 unity.Squad.Kerbal Space Program 0x006695e4 LookForNewDevices(void*) + 452

7 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

8 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

9 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

10 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 4:: UnityGfxDeviceWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003bb586 ThreadedStreamBuffer::HandleReadOverflow(unsigned int&, unsigned int&) + 118

4 unity.Squad.Kerbal Space Program 0x00699c40 GfxDeviceWorker::RunCommand(ThreadedStreamBuffer&) + 80

5 unity.Squad.Kerbal Space Program 0x00699abf GfxDeviceWorker::RunGfxDeviceWorker(void*) + 79

6 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

7 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

8 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

9 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 5:: UnityWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003b97c3 JobScheduler::WorkLoop(void*) + 99

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 6:: UnityWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003b97c3 JobScheduler::WorkLoop(void*) + 99

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 7:: UnityWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003b97c3 JobScheduler::WorkLoop(void*) + 99

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 8:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 unity.Squad.Kerbal Space Program 0x00060ac3 algThreadJobQueueThreadFunc + 35

2 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

3 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 9:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 unity.Squad.Kerbal Space Program 0x00060ac3 algThreadJobQueueThreadFunc + 35

2 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

3 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 10:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 unity.Squad.Kerbal Space Program 0x00060ac3 algThreadJobQueueThreadFunc + 35

2 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

3 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 11:: UnitySubstanceThread

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x00280e5b SubstanceSystem::ThreadMain(void*) + 59

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 12:: com.apple.audio.IOThread.client

0 libsystem_kernel.dylib 0x922a49ce mach_msg_trap + 10

1 libsystem_kernel.dylib 0x922a3a70 mach_msg + 68

2 com.apple.audio.CoreAudio 0x956a6bb0 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 142

3 com.apple.audio.CoreAudio 0x9569f6fe HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 72

4 com.apple.audio.CoreAudio 0x9569dc1e HALC_ProxyIOContext::IOWorkLoop() + 1148

5 com.apple.audio.CoreAudio 0x9569d67a HALC_ProxyIOContext::IOThreadEntry(void*) + 156

6 com.apple.audio.CoreAudio 0x956a9d09 ___ZN19HALC_ProxyIOContextC2Emj_block_invoke + 20

7 com.apple.audio.CoreAudio 0x9569d591 HALB_IOThread::Entry(void*) + 173

8 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

9 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

10 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 13:

0 libsystem_kernel.dylib 0x922aa8f6 __semwait_signal + 10

1 libsystem_c.dylib 0x90598c06 nanosleep$UNIX2003 + 218

2 libsystem_c.dylib 0x90598ab2 usleep$UNIX2003 + 60

3 unity.Squad.Kerbal Space Program 0x00a48b45 FMOD_OS_Time_Sleep(unsigned int) + 21

4 unity.Squad.Kerbal Space Program 0x00a2d031 FMOD::Thread::callback(void*) + 49

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 14:: CVDisplayLink

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 com.apple.CoreVideo 0x956f97ef CVDisplayLink::runIOThread() + 927

4 com.apple.CoreVideo 0x956f9439 startIOThread(void*) + 159

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 15:: UnityPreload

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x002f3ec9 PreloadManager::Run() + 169

4 unity.Squad.Kerbal Space Program 0x002f3e11 PreloadManager::Run(void*) + 17

5 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

6 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

7 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

8 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 16:

0 libsystem_kernel.dylib 0x922aa8f6 __semwait_signal + 10

1 libsystem_c.dylib 0x90598c06 nanosleep$UNIX2003 + 218

2 libsystem_c.dylib 0x90598ab2 usleep$UNIX2003 + 60

3 unity.Squad.Kerbal Space Program 0x00a48b45 FMOD_OS_Time_Sleep(unsigned int) + 21

4 unity.Squad.Kerbal Space Program 0x00a2d031 FMOD::Thread::callback(void*) + 49

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 17:

0 libsystem_kernel.dylib 0x922a49ce mach_msg_trap + 10

1 libsystem_kernel.dylib 0x922a3a70 mach_msg + 68

2 com.apple.CoreFoundation 0x9702cef6 __CFRunLoopServiceMachPort + 214

3 com.apple.CoreFoundation 0x9702c309 __CFRunLoopRun + 1529

4 com.apple.CoreFoundation 0x9702baa6 CFRunLoopRunSpecific + 390

5 com.apple.CoreFoundation 0x9702b90b CFRunLoopRunInMode + 123

6 com.apple.AppKit 0x9b7f4ea0 _NSEventThread + 283

7 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

8 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

9 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 18:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 libmono.0.dylib 0x01465b22 _wapi_handle_timedwait_signal_handle + 455

4 libmono.0.dylib 0x01465bcd _wapi_handle_wait_signal_handle + 46

5 libmono.0.dylib 0x0147539d WaitForSingleObjectEx + 569

6 libmono.0.dylib 0x0144dde8 async_invoke_thread + 690

7 libmono.0.dylib 0x014438f5 start_wrapper + 534

8 libmono.0.dylib 0x01477334 thread_start_routine + 265

9 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

10 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

11 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

12 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 19:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 20:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 21:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 22:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 libmono.0.dylib 0x01465b22 _wapi_handle_timedwait_signal_handle + 455

4 libmono.0.dylib 0x01465bcd _wapi_handle_wait_signal_handle + 46

5 libmono.0.dylib 0x0147539d WaitForSingleObjectEx + 569

6 libmono.0.dylib 0x0144dde8 async_invoke_thread + 690

7 libmono.0.dylib 0x014438f5 start_wrapper + 534

8 libmono.0.dylib 0x01477334 thread_start_routine + 265

9 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

10 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

11 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

12 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 23:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 24:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 25:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 libmono.0.dylib 0x01465b22 _wapi_handle_timedwait_signal_handle + 455

4 libmono.0.dylib 0x01465bcd _wapi_handle_wait_signal_handle + 46

5 libmono.0.dylib 0x0147539d WaitForSingleObjectEx + 569

6 libmono.0.dylib 0x0144dde8 async_invoke_thread + 690

7 libmono.0.dylib 0x014438f5 start_wrapper + 534

8 libmono.0.dylib 0x01477334 thread_start_routine + 265

9 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

10 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

11 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

12 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 0 crashed with X86 Thread State (32-bit):

eax: 0x00000000 ebx: 0x0135c1c3 ecx: 0xbfffb6bc edx: 0x00000000

edi: 0xa09941d4 esi: 0x00000006 ebp: 0xbfffb6d8 esp: 0xbfffb6bc

ss: 0x00000023 efl: 0x00000206 eip: 0x922aa69a cs: 0x0000000b

ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f

cr2: 0xa09941e0

Logical CPU: 0

Error Code: 0x00080148

Trap Number: 132

Binary Images:

0x1000 - 0xb7ffff +unity.Squad.Kerbal Space Program (Unity Player version 4.6.4f1 - 4.6.4f1) <8A005382-F6E0-3C56-BD27-4D5E085F19AC> /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/MacOS/KSP

0x128b000 - 0x12b1ffb +gameoverlayrenderer.dylib (1) <648088B6-2241-34D1-B910-F064C3EBBB3D> /Applications/Steam.app/Contents/MacOS/gameoverlayrenderer.dylib

0x12d3000 - 0x12d4ffb +steamloader.dylib (0) <7D581E42-6109-3883-8EE0-0C8160E5034A> /Applications/Steam.app/Contents/MacOS/steamloader.dylib

0x12d7000 - 0x1550fff +libmono.0.dylib (1) <D0D1C4F2-7018-3074-B5D7-3A6B08478766> /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/Frameworks/MonoEmbedRuntime/osx/libmono.0.dylib

0x8ff1000 - 0x8ff1ffb +cl_kernels (???) <5ABF635C-9B2C-40B3-957B-374C3C190E04> cl_kernels

0x8ff5000 - 0x8ff5ffb +cl_kernels (???) <F61D0815-678B-42BB-AE00-17B1C43960A5> cl_kernels

0xa702000 - 0xa74ffff com.apple.CloudDocs (1.0 - 321.6) <EF208D9F-9E6C-3FF9-AC82-3C2B4EBFAB89> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs

0xae2d000 - 0xaf18ff7 unorm8_bgra.dylib (2.4.5) <8F181889-D219-3292-B6C0-F6607D1924B0> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib

0xc675000 - 0xc681ff7 com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <D4293D14-F278-3B83-943D-EE12FA8A7F1E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib

0x10e58000 - 0x10e5cfff com.apple.audio.AppleHDAHALPlugIn (272.18 - 272.18) <FCD052AE-05F8-39C1-A378-F10B15F589E6> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn

0x12802000 - 0x12a58ffb com.apple.audio.units.Components (1.12 - 1.12) <CDBD7615-8B56-3CA5-AA0A-8BB4CCDD11B3> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio

0x48000000 - 0x488cbfff com.apple.GeForceGLDriver (10.2.7 - 10.0.2) <F017D4B6-4C3F-3368-99CE-FB81CEC0BBA3> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver

0x8fe7a000 - 0x8feade03 dyld (353.2.1) <06B1254D-9BB9-327C-BA15-8F18FFF97586> /usr/lib/dyld

0x90008000 - 0x90010ff7 libCGCMS.A.dylib (779.11) <EFC325D4-B616-3739-BAB6-D9C8B74F102F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib

0x90011000 - 0x90024fff libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib

0x90025000 - 0x90099fff com.apple.Heimdal (4.0 - 2.0) <0082F991-F391-31A6-915C-1FCB0AD004AC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal

0x9009a000 - 0x900e1ff3 com.apple.AppleJPEG (1.0 - 1) <677BE130-F5AB-36F4-A51A-1FF20FC0085A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG

0x900e2000 - 0x902a7fff com.apple.QuartzCore (1.10 - 361.18) <C2F1A85F-EA5E-3B73-81A2-06E3078202BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

0x902a8000 - 0x902f6ff7 libcurl.4.dylib (83.1.2) <50E14C55-B150-39E1-BA2C-B0658D38E580> /usr/lib/libcurl.4.dylib

0x902f7000 - 0x902f7fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <F968D12F-F59D-3148-951D-76735C3C1B57> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib

0x902f8000 - 0x9031eff3 libxpc.dylib (559.20.9) <15931AC6-7282-332D-9A44-6CFF84AC63AF> /usr/lib/system/libxpc.dylib

0x9031f000 - 0x9031ffff libkeymgr.dylib (28) <06DDCEF8-EB84-3F68-9E19-FD1A12B764FD> /usr/lib/system/libkeymgr.dylib

0x90370000 - 0x9038fff7 com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) <9265A1BE-FA6F-38C7-BDFB-FA05EEC683CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport

0x90390000 - 0x90436fff com.apple.Metadata (10.7.0 - 917.35) <3A9CD210-E9CC-3C1C-A72F-278F0694C1B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata

0x90437000 - 0x904d7fff com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD

0x904d8000 - 0x904eaff7 libsasl2.2.dylib (194.1) <34CB75C7-09BE-3319-BF7E-D4E56495F07A> /usr/lib/libsasl2.2.dylib

0x904eb000 - 0x90519ff7 libarchive.2.dylib (30) <8758D35F-ADF8-30F6-8EB2-9B852876EAC8> /usr/lib/libarchive.2.dylib

0x9051a000 - 0x905affff libsystem_c.dylib (1044.10.1) <9804163C-4DEC-3B94-9854-00248E44554F> /usr/lib/system/libsystem_c.dylib

0x905b0000 - 0x9062dff3 com.apple.framework.IOKit (2.0.2 - 1050.20.2) <84299E45-C5F3-365F-AC1B-0EAFF8057112> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

0x908b4000 - 0x908c5fff libsystem_coretls.dylib (35.20.2) <3688680D-90B5-373F-9E0D-46809E98B023> /usr/lib/system/libsystem_coretls.dylib

0x908c6000 - 0x908d4ff7 libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib

0x908d5000 - 0x90908fff com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <709E9F1B-D266-399B-9A4B-3785BBF64E01> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal

0x90909000 - 0x90932fff libsystem_info.dylib (459.20.1) <91DEA2CC-26A7-32CD-ABC5-0B2754874E38> /usr/lib/system/libsystem_info.dylib

0x90933000 - 0x9093cfff libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib

0x9093d000 - 0x90941ffb com.apple.IOSurface (97.4 - 97.4) <FD6AD351-BD60-337C-8D3D-42CDA7EE137C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

0x90942000 - 0x90948ff3 libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib

0x90949000 - 0x90976fff com.apple.ProtectedCloudStorage (1.0 - 1) <1CF781F8-1210-3B77-964B-D85F98B90681> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage

0x90977000 - 0x9097ffeb libcldcpuengine.dylib (2.4.5) <DF8CD84D-565E-370D-AC80-7D43E19B7E42> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib

0x90980000 - 0x90981fff liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib

0x90982000 - 0x9099bfff com.apple.Kerberos (3.0 - 1) <92735F11-CF1C-3FA6-8682-9A30AC9E2651> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

0x9099c000 - 0x90a67fff com.apple.DiscRecording (9.0 - 9000.4.2) <8E19F180-3D32-3C7A-8E73-272F2955D9A8> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording

0x90a68000 - 0x91375ffb libclh.dylib (4.0.3 - 4.0.3) <757D7708-7520-31EB-8950-3373FB596E62> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib

0x91376000 - 0x91526ff7 libGLProgrammability.dylib (11.1.2) <66618525-9A42-3C2F-9D4D-85E3FE883B88> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib

0x91527000 - 0x916b6ff3 libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib

0x916b7000 - 0x916b8fff com.apple.TrustEvaluationAgent (2.0 - 25) <28BBD931-EF7C-3753-B50E-6568F4075086> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent

0x916b9000 - 0x91ab0fff com.apple.CoreGraphics (1.600.0 - 779.11) <C335E1BE-B524-3EE8-969F-329BE9739CC4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

0x91ab1000 - 0x91b1dff3 com.apple.datadetectorscore (6.0 - 396.1.1) <A1ADB604-689E-3B00-BCB2-1B6662644BBD> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore

0x91b1e000 - 0x91e7fff3 com.apple.Foundation (6.9 - 1153.20) <B2539D54-EC35-3388-82C7-B01BB225A804> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

0x91e80000 - 0x91e9fff7 com.apple.GenerationalStorage (2.0 - 209.11) <34CF76B2-8052-359D-816D-092608FB6919> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage

0x91faf000 - 0x91fb8fff libGFXShared.dylib (11.1.2) <C67D9D93-6172-3AD6-BBB2-A18C9EC94570> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

0x91fb9000 - 0x9200dfff com.apple.HIServices (1.22 - 522.1) <E46DFA95-A419-32CD-AD1F-C5839F9CF923> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices

0x9200e000 - 0x9201dffb libxar.1.dylib (255) <4FF7DB6F-3232-302F-94BC-F1188F78AF25> /usr/lib/libxar.1.dylib

0x9201e000 - 0x9205effb libGLImage.dylib (11.1.2) <9BAF083D-12EF-3CD9-A875-191B1A3CC687> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

0x920ff000 - 0x9210bff7 libkxld.dylib (2782.20.48) <A318FD58-B9BA-3548-A8C9-116DB33719A5> /usr/lib/system/libkxld.dylib

0x9210c000 - 0x92123ff3 libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib

0x92124000 - 0x92126fff com.apple.loginsupport (1.0 - 1) <BA8EEAD0-8E97-3219-949B-50AE67F8869E> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport

0x92127000 - 0x9214dffb libPng.dylib (1237) <7EA0DEBE-4000-39D4-89E5-17F655BA317E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

0x9214e000 - 0x92172ffb com.apple.framework.Apple80211 (10.3 - 1030.71.6) <84F7040E-713D-3B0E-8397-7CE0C377C52A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211

0x92173000 - 0x9219cfff libRIP.A.dylib (779.11) <4BD501EF-1671-3165-BD7A-CF227F4BD690> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib

0x9219d000 - 0x921a4fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition

0x921a5000 - 0x92232ff3 com.apple.PerformanceAnalysis (1.0 - 1) <AADDDFC1-B4F3-311A-94EF-4D8EAFC2E2C7> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis

0x92233000 - 0x92233fff com.apple.Carbon (154 - 157) <CA90E930-DE59-3AD9-B158-3A940BA1FA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

0x92269000 - 0x92290fff libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib

0x92291000 - 0x922b0fff libsystem_kernel.dylib (2782.20.48) <D1D17CE0-1D1D-3243-9E9D-78C70F19B0ED> /usr/lib/system/libsystem_kernel.dylib

0x922b1000 - 0x92360ffb com.apple.Bluetooth (4.3.4 - 4.3.4f4) <90D495A0-431F-363B-8818-230CB096D6E1> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

0x92361000 - 0x92366ff7 libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib

0x92367000 - 0x9236ffff com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <FDCAA783-356F-3CA4-B960-16555CD7E34A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents

0x92370000 - 0x9251effb GLEngine (11.1.2) <E08E5A1F-548F-3334-B181-0848981F43A9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine

0x92523000 - 0x92731ff7 com.apple.CFNetwork (720.3.13 - 720.3.13) <2593580E-5547-37C7-A99A-9D1B086C8B69> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork

0x92732000 - 0x9276ffff libsystem_network.dylib (412.20.3) <039F7709-8BFA-3299-8FD7-168145568642> /usr/lib/system/libsystem_network.dylib

0x92770000 - 0x927aaff7 com.apple.DebugSymbols (115 - 115) <D01FFA10-1734-31C5-B5A1-9CB61463FC15> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols

0x927ab000 - 0x927c2ffb com.apple.AppContainer (4.0 - 238.20.2) <0A9A3DD3-2D64-3548-8374-96FCE828D151> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer

0x927c3000 - 0x927c5ffb libRadiance.dylib (1237) <A9D5C5E7-8D9E-308A-BA4F-20491E3F15C4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib

0x927c6000 - 0x927ccff7 com.apple.MediaAccessibility (1.0 - 61) <81E9530E-882C-313C-A4D5-2F43EB569E4F> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility

0x927cd000 - 0x927cfff3 com.apple.EFILogin (2.0 - 2) <00F6D57F-5B4F-373E-BBFF-D19E1E7F87E6> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin

0x927d0000 - 0x927dcff7 libcsfde.dylib (471.20.7) <95CB28B6-A722-3660-AD1B-07A7C0B8C74A> /usr/lib/libcsfde.dylib

0x927dd000 - 0x92836ff3 libAVFAudio.dylib (118.6) <D91F498D-AF1E-368B-9DCB-CDA3AAA0E6CD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib

0x92837000 - 0x92840ff7 libsystem_notify.dylib (133.1.1) <B8503E99-214B-3AC3-A7CA-CC837ABD7B25> /usr/lib/system/libsystem_notify.dylib

0x92841000 - 0x928c0fff com.apple.SystemConfiguration (1.14 - 1.14) <6081992E-6825-3F69-AACF-70ABFA4CE379> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

0x928c1000 - 0x928c3fff libsystem_sandbox.dylib (358.20.5) <FA3A0729-6839-38AC-B365-5E89A125F091> /usr/lib/system/libsystem_sandbox.dylib

0x928c4000 - 0x92bd8fef com.apple.CoreAUC (211.1.0 - 211.1.0) <4ECEBB32-FAA9-357E-BD7D-039E2633AAD5> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC

0x92bd9000 - 0x92bf8ffb libresolv.9.dylib (57) <C2C3810A-A45E-3375-B41D-6E1BECE1BA3C> /usr/lib/libresolv.9.dylib

0x92bf9000 - 0x92c05ff3 libGPUSupportMercury.dylib (11.1.2) <4D408B6F-74BB-3367-A4B8-086BA2D1C3F0> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib

0x92c06000 - 0x92c7dfff com.apple.ApplicationServices.ATS (360 - 375.2) <A5CA2D71-673F-3FD8-B515-DAB1B3CC52C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS

0x92c81000 - 0x931e1ff3 com.apple.MediaToolbox (1.0 - 1562.235) <44C382D2-F7B2-312A-B6CC-AD27D0F17011> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox

0x931e2000 - 0x932f8ff3 com.apple.desktopservices (1.9.3 - 1.9.3) <544FDA55-063A-3787-A55A-A54290E4BE6E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv

0x9332b000 - 0x9332fffb libcache.dylib (69) <55501A00-AF64-3554-8F46-8D5AFEDEC332> /usr/lib/system/libcache.dylib

0x93330000 - 0x9339bff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi

0x9339c000 - 0x933a1ff7 libcompiler_rt.dylib (35) <6630682F-AB76-3E55-BE51-0A3E61B6CFC2> /usr/lib/system/libcompiler_rt.dylib

0x933a2000 - 0x93429fff com.apple.CoreServices.OSServices (640.4 - 640.4) <6ABC3CCE-5A4E-3CB2-AA12-3FFAB27D835A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices

0x9342a000 - 0x9342efff com.apple.IOAccelerator (156.14 - 156.14) <7A7AE17B-D677-3348-8AC3-B6F7BF36595E> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator

0x94d6d000 - 0x94dbefff com.apple.opencl (2.4.2 - 2.4.2) <0751975F-97E4-3271-BA93-2FC7A5FDB940> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

0x94dbf000 - 0x94debfff com.apple.ChunkingLibrary (2.1 - 163.6) <D5446A27-C51B-36D7-A4A1-3222A87F6F48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary

0x94dec000 - 0x94decfff libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib

0x94ded000 - 0x94e0affb com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity

0x94e0b000 - 0x94e3dffb com.apple.GSS (4.0 - 2.0) <2E9B0C48-962E-3CAB-ABCE-0A16CFCEF53E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS

0x950d8000 - 0x950deff7 libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib

0x950df000 - 0x950e7ff7 com.apple.icloud.FindMyDevice (1.0 - 1) <E6C21417-C63A-3CD7-9329-205057417AC1> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice

0x950e8000 - 0x951d2fff libcrypto.0.9.8.dylib (52.20.2) <3BE03EE0-9DAE-395D-8292-0371FB21EE3F> /usr/lib/libcrypto.0.9.8.dylib

0x951d3000 - 0x951d3fff libOpenScriptingUtil.dylib (162.1) <EDDD4BA8-6212-3437-8CFF-117724C12A4E> /usr/lib/libOpenScriptingUtil.dylib

0x951d4000 - 0x9521dffb libFontRegistry.dylib (134.1) <6CF6177B-D5D6-3E7B-88BC-BE833D55018C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib

0x9521e000 - 0x9551cffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <ABEA5906-26AE-308F-B078-5944ABDF94DF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore

0x9551d000 - 0x95525ffb com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

0x95526000 - 0x95528fff libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib

0x95529000 - 0x95535ff3 libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib

0x95536000 - 0x95570fff com.apple.AirPlaySupport (2.0 - 215.18) <62CFE5FC-293F-36C8-9371-243892E55D73> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport

0x95571000 - 0x955daff7 libcorecrypto.dylib (233.1.2) <F188C1A7-E88F-3EC5-A6AA-22C02E3F0C93> /usr/lib/system/libcorecrypto.dylib

0x955db000 - 0x9561bfff com.apple.Symbolication (1.4 - 56045) <BE1C4846-DA11-365D-9B46-3FF130401839> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication

0x95670000 - 0x9568aff7 liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib

0x9568b000 - 0x956e0ff3 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <2AF304F7-5DA4-3035-9E15-070F16700789> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

0x956e2000 - 0x956f6fff com.apple.ImageCapture (9.0 - 9.0) <4B84B5D5-A5F3-3B35-93CE-568A73486B92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture

0x956f7000 - 0x95726fff com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

0x95727000 - 0x95818ffb libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib

0x95819000 - 0x95834ff3 com.apple.openscripting (1.4 - 162.1) <CC32543F-0BEA-3022-AF35-5149C50DE902> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

0x95835000 - 0x95845ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis

0x95846000 - 0x95846fff com.apple.CoreServices (62 - 62) <08A581EC-2E8B-30CF-B555-64171C8FE5EE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

0x95847000 - 0x9584afff libextension.dylib (55.2) <BE3B5B43-A1BB-3BB6-9CD9-946BC61241FC> /usr/lib/libextension.dylib

0x9584b000 - 0x95854fff com.apple.AppleSRP (5.0 - 1) <41C48FA8-C249-3800-A551-7F4AFA3E723F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP

0x95855000 - 0x95c90feb com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage

0x95c91000 - 0x95c9afff com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

0x95c9b000 - 0x95f32fff com.apple.CoreData (111 - 526.3) <93295B9D-6C48-3919-8B9C-A4291D3522CE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

0x95f33000 - 0x95f56fff libJPEG.dylib (1237) <6838FF44-9DF6-349E-AFB4-182F80C2DA79> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

0x95f59000 - 0x95f5cfff libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib

0x95f5d000 - 0x95f64ff3 libunwind.dylib (35.3) <29D9343F-9A0A-3535-B0AE-E7CC761D95EE> /usr/lib/system/libunwind.dylib

0x95f65000 - 0x95f7cfff libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib

0x95f7d000 - 0x95f7fff7 libquarantine.dylib (76.20.1) <8694AC5A-7359-3CC6-8E93-CABFCC919D4B> /usr/lib/system/libquarantine.dylib

0x95f80000 - 0x95f85fff com.apple.print.framework.Print (10.0 - 265) <7C3984BB-8337-3B90-A414-17C181A45744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print

0x95f86000 - 0x95f86fff com.apple.audio.units.AudioUnit (1.12 - 1.12) <CFB6243A-1613-3468-88CE-1DDBEC1E6984> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

0x95f87000 - 0x96094fe3 libvDSP.dylib (516) <53F7A960-01E1-3B79-A7FD-67BD19471420> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib

0x96095000 - 0x9609cfff com.apple.XPCService (2.0 - 1) <9A59D63D-446A-33A4-BB21-56E42417DA93> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService

0x9609d000 - 0x960a8ff7 com.apple.AppSandbox (4.0 - 238.20.2) <E81603D8-FA25-3667-999C-E5A9DF790CB4> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox

0x960a9000 - 0x960b4ff7 com.apple.NetAuth (5.2 - 5.2) <3E650FB0-5EB5-3807-8B71-8FAF64D6A0FC> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth

0x960b5000 - 0x96108fff libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib

0x96109000 - 0x96110fff com.apple.agl (3.3.0 - AGL-3.3.0) <8822D220-5EA7-3A56-9EA1-5CE4861EB636> /System/Library/Frameworks/AGL.framework/Versions/A/AGL

0x96129000 - 0x96137ff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <CDD0CAA1-DF2E-3FE1-AEE4-4C0823E6FD5C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore

0x96138000 - 0x9618dff7 com.apple.htmlrendering (77 - 1.1.4) <B85A63B9-C9DD-3ECC-B5DC-E12533C7FDF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering

0x9621d000 - 0x96250fe3 libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib

0x96251000 - 0x96254fff libdyld.dylib (353.2.1) <30CE0D0E-7E82-3CD5-92E7-9C1D6AD3327C> /usr/lib/system/libdyld.dylib

0x96255000 - 0x96259fff libCoreVMClient.dylib (79.1) <3DB52AB1-D41E-3AC9-A355-1B6DCEDB4DFD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

0x9625a000 - 0x96346fe7 libvMisc.dylib (516) <C784D56E-112E-359F-848B-3419E0572EB4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib

0x96347000 - 0x96348fff libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib

0x96349000 - 0x963dbfff com.apple.CoreSymbolication (3.1 - 57020.1) <7A6A6AD6-E46A-334F-ACC4-41B179505EC9> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication

0x963dc000 - 0x9675fff7 com.apple.VideoToolbox (1.0 - 1562.235) <52EE731A-400A-3670-8904-03636C41B4CD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox

0x96760000 - 0x96761fff libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib

0x96762000 - 0x9676afff libsystem_pthread.dylib (105.10.1) <4A229519-29A1-3ABF-8CEF-43BCE4ACDA06> /usr/lib/system/libsystem_pthread.dylib

0x9676b000 - 0x9686fff7 libJP2.dylib (1237) <3A85AB3C-AFC7-3761-A198-D6C7317E476A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

0x96870000 - 0x96c49ff3 com.apple.HIToolbox (2.1.1 - 758.7) <A7B81A48-6BB9-35EC-B128-D38AD4EC7802> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox

0x96c4a000 - 0x96c65ff7 com.apple.CFOpenDirectory (10.10 - 187) <44C81E98-710E-30EB-829D-7374B9339345> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory

0x96c74000 - 0x96c9aff7 com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices

0x96c9b000 - 0x96d48fff libcrypto.0.9.7.dylib (106) <19669D99-DC79-3715-BC3A-850016DDDD7F> /usr/lib/libcrypto.0.9.7.dylib

0x96d49000 - 0x96f3ffff libicucore.A.dylib (531.48) <A1002DA8-DAA9-30E8-95AE-1BF575AC5AB5> /usr/lib/libicucore.A.dylib

0x96f40000 - 0x96f6fff7 com.apple.DictionaryServices (1.2 - 229) <BC958000-7A7D-3C3A-B0FF-95734A35EB0A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices

0x96f70000 - 0x96f70fff liblaunch.dylib (559.20.9) <A0885899-CDE9-3688-8C3C-B583E24090E0> /usr/lib/system/liblaunch.dylib

0x96f71000 - 0x96f75fff libheimdal-asn1.dylib (398.10.1) <6F113AF8-F5AD-330B-B029-F7AF28A93F28> /usr/lib/libheimdal-asn1.dylib

0x96f76000 - 0x96fa0fff libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib

0x96fa1000 - 0x96fb4fff com.apple.Sharing (328.16 - 328.16) <57F64876-D785-3B35-91B9-B2800F800C37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing

0x96fb5000 - 0x97369ff7 com.apple.CoreFoundation (6.9 - 1153.18) <267B1002-C755-37B4-95CD-92358CF994B8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

0x97374000 - 0x97381ff3 com.apple.ProtocolBuffer (1 - 228.0.1) <B61B9562-CBDE-34E5-B19E-291A1D95D782> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer

0x97382000 - 0x97434fff libCoreStorage.dylib (471.20.7) <34D9A40A-97EB-3365-B809-13DA5BF569C6> /usr/lib/libCoreStorage.dylib

0x97435000 - 0x9748bfff libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib

0x9748c000 - 0x97490fff com.apple.CommonPanels (1.2.6 - 96) <955375E6-2416-38E1-AFC6-477827119329> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels

0x97491000 - 0x97493fff com.apple.securityhi (9.0 - 55006) <B87325C7-1F87-3D3C-874C-9DF59C8EBE1E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI

0x97494000 - 0x974effff com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling

0x974f0000 - 0x97516ff3 libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib

0x97517000 - 0x97530fff libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib

0x97531000 - 0x9756bfff com.apple.LDAPFramework (2.4.28 - 194.5) <E3E6B657-AA4C-3D9D-8EB2-ACAC1B62DDDE> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

0x9756c000 - 0x976b0ff7 com.apple.ImageIO.framework (3.3.0 - 1237) <314B3F6B-4DC5-31E9-BE67-032901676A34> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

0x976b1000 - 0x977a8ff7 libFontParser.dylib (134.2) <1CE9DA9E-FBF3-32E4-838D-455EA531F26E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib

0x977a9000 - 0x97a27ff3 com.apple.security (7.0 - 57031.20.26) <7E5439C5-752D-367F-A28A-AA34C7307981> /System/Library/Frameworks/Security.framework/Versions/A/Security

0x97a28000 - 0x97a9fff7 com.apple.CoreUtils (1.1 - 110.1) <1667BF42-48D3-3B3D-A9CF-0868178DD2EB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils

0x97aa0000 - 0x97d40ff7 com.apple.RawCamera.bundle (6.04 - 791) <0558A7ED-F642-34AC-944E-1FEE517C229D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

0x97eb7000 - 0x97f54fff com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

0x97f55000 - 0x97f5effb com.apple.CommonAuth (4.0 - 2.0) <FFE760A3-FEF7-3009-92E8-893ABB3BC91A> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth

0x97f5f000 - 0x98347ff7 libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib

0x98348000 - 0x9834affb libCGXType.A.dylib (779.11) <2B22C4C3-CF75-3909-B9A0-1B9A23028FBB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib

0x9834b000 - 0x983afff7 com.apple.AE (681.2 - 681.2) <E56D8304-3975-32E0-BBF2-611F04209C2B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE

0x986c7000 - 0x98707fff libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib

0x98708000 - 0x987b0ff7 com.apple.CoreMedia (1.0 - 1562.235) <BA4933F2-289D-354B-B3B7-451AAF9FBB96> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia

0x987b1000 - 0x987f0fff com.apple.NavigationServices (3.8 - 215.1) <46D8B66D-CB59-36F5-BD26-FD8309337BB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices

0x987f1000 - 0x987feff7 libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib

0x98e40000 - 0x98f30ff3 com.apple.DiskImagesFramework (10.10.1 - 396) <25716B90-E152-3666-92BB-FE543AEB6FA9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

0x98f31000 - 0x9909dff3 com.apple.avfoundation (2.0 - 889.210) <C49EA877-535F-3E27-80B2-87AACA207F33> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation

0x9909e000 - 0x993f8ff7 libmecabra.dylib (666.7) <55A50B97-92D3-3DDC-8E3A-58BC5FFE5E3F> /usr/lib/libmecabra.dylib

0x993f9000 - 0x993fbfff libsystem_configuration.dylib (699.1.5) <CC818B5B-D6A6-3313-A0FD-6F781B24DAD4> /usr/lib/system/libsystem_configuration.dylib

0x993fc000 - 0x99403fff libMatch.1.dylib (24) <428CD037-5261-39A6-83EE-A7D9ABF446EB> /usr/lib/libMatch.1.dylib

0x99404000 - 0x99406fff com.apple.SecCodeWrapper (4.0 - 238.20.2) <E70AD7E3-F4A1-3315-ABD9-9FF5078E9EDD> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper

0x99407000 - 0x9940affb libutil.dylib (38) <B5A16C6B-A79E-3504-BDA6-64A063F6612D> /usr/lib/libutil.dylib

0x9940b000 - 0x9940efff com.apple.xpc.ServiceManagement (1.0 - 1) <D23A7F03-979D-3A78-B1F6-645D2EFEEF66> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement

0x9940f000 - 0x9941dff3 com.apple.opengl (11.1.2 - 11.1.2) <F252DF22-C5E2-3A47-ACB6-2B02D6164A47> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

0x9941e000 - 0x9947efff com.apple.AppleVAFramework (5.0.31 - 5.0.31) <2FFC7C07-CA18-3959-B8F6-F620025BCD86> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

0x9947f000 - 0x99492fff com.apple.CoreBluetooth (1.0 - 1) <153F2DDE-CCCF-3C63-AF70-2EA306DACDCD> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth

0x99493000 - 0x994a3fff libGL.dylib (11.1.2) <44DD250B-CB98-3FD1-BF5B-6AD85A68BF9A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

0x99e53000 - 0x99e59ff7 libsystem_trace.dylib (72.20.1) <5F23BE77-1C60-3859-B528-C6B3C184C95C> /usr/lib/system/libsystem_trace.dylib

0x99e5a000 - 0x99e67ff7 com.apple.OpenDirectory (10.10 - 187) <60A9481B-2191-35A2-AB7E-E48A2B49BF09> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

0x99e68000 - 0x99e94ffb libsandbox.1.dylib (358.20.5) <5AFB311B-D796-3851-BC5B-72EF603DB2B6> /usr/lib/libsandbox.1.dylib

0x99e95000 - 0x99e99ffb libGIF.dylib (1237) <F831EEB0-3193-32A7-914D-F77C7D5027E3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

0x99e9a000 - 0x99eedfff com.apple.CoreMediaIO (601.0 - 4760) <A3BA21A9-5841-3C98-BBE8-A945020745DF> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO

0x99eee000 - 0x99fb9fff com.apple.backup.framework (1.6.4 - 1.6.4) <75DC1CA0-5D18-3E8F-A8BC-D737FC9C55C4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

0x99fba000 - 0x99fc7ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <3771942E-13BB-30C0-9992-11EE637871DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis

0x99fc8000 - 0x9a0c9ff7 com.apple.LaunchServices (644.56 - 644.56) <CFF2C4B8-8111-3B9B-A6F7-E2AB33163238> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices

0x9a0ca000 - 0x9a4fdff3 com.apple.vision.FaceCore (3.1.6 - 3.1.6) <EF92C25B-3E33-379F-A862-75C2FCA8B386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

0x9a4fe000 - 0x9a6ed2ef libobjc.A.dylib (647) <7648C174-3098-3B26-AD20-490DBFFD5D4C> /usr/lib/libobjc.A.dylib

0x9a6ee000 - 0x9a9e0ff3 com.apple.CoreImage (10.3.4) <6A0E17E6-9F56-3450-8892-670A9C489C30> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage

0x9aa9b000 - 0x9aad7ff3 com.apple.RemoteViewServices (2.0 - 99) <2839C2F1-88DA-3843-87BF-441A374A8967> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices

0x9aad8000 - 0x9aae2ffb com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound

0x9aafc000 - 0x9aafcfff com.apple.Cocoa (6.8 - 21) <6AF80DDB-C28E-36FF-BC11-D7D561AC52A9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

0x9aafd000 - 0x9ab01ff3 com.apple.TCC (1.0 - 1) <EE0D6865-A6E0-3BF0-93F1-837C09AA7978> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC

0x9ab02000 - 0x9ac15fff com.apple.MediaControlSender (2.0 - 215.18) <D35B4B09-AE31-3028-ACEE-E86991772577> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender

0x9ac16000 - 0x9ad48fff com.apple.UIFoundation (1.0 - 1) <B5B0D178-E1F5-3625-9391-46495E35D540> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation

0x9ad49000 - 0x9ae5ffff com.apple.CoreText (352.0 - 454.6) <5F236E10-C911-3AAF-8BA6-2F0F68A87443> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText

0x9ae60000 - 0x9afd1ffb libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib

0x9afd2000 - 0x9b023fff libcups.2.dylib (408.2) <425E4328-ECA1-31EE-B2C4-0D67FB8848BE> /usr/lib/libcups.2.dylib

0x9b024000 - 0x9b025fff libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib

0x9b026000 - 0x9b02efff libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib

0x9b02f000 - 0x9b069fff com.apple.MediaKit (16 - 757.2) <C8A90BB1-86B8-3695-B098-DDEF9A44CDC9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

0x9b06a000 - 0x9b1f2ff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <CA1E6D99-F534-3D3B-9AA5-038E171AD0A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

0x9b1f3000 - 0x9b1f4fff libSystem.B.dylib (1213) <C45CC429-5DE4-3B01-8450-B3BD1AA03C3F> /usr/lib/libSystem.B.dylib

0x9b1f5000 - 0x9b252ff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <86895179-C54B-3D8A-B515-92DFA6315FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore

0x9b253000 - 0x9b2aeffb libTIFF.dylib (1237) <CEE13162-B2D3-3AA6-82A7-AA1A02E424DF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

0x9b2af000 - 0x9b2dcff7 GLRendererFloat (11.1.2) <F9E90ECE-FBBF-3F1A-BC97-EDDB152498C1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat

0x9b2dd000 - 0x9b2e0ff7 com.apple.help (1.3.3 - 46) <FDF183E4-3B95-3CBD-A390-2536C8E7E258> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help

0x9b2e1000 - 0x9b315ffb com.apple.frameworks.CoreDaemon (1.3 - 1.3) <F527DB82-0D3F-359E-979B-951DFF46D45C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon

0x9b316000 - 0x9b316fff com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

0x9b317000 - 0x9b40dff7 libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib

0x9b40e000 - 0x9b41ffff libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib

0x9b420000 - 0x9b54eff7 com.apple.coreui (2.1 - 308.6) <908A9C21-7AE9-3480-A858-2E4D928F661D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

0x9b54f000 - 0x9b571ff3 libssl.0.9.7.dylib (106) <E0174C8B-F4E3-3B8C-9F88-1D7B088DC155> /usr/lib/libssl.0.9.7.dylib

0x9b572000 - 0x9b5a5fff com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <103A5EA0-9B75-3B23-BE72-C4DD52744A6A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD

0x9b5d0000 - 0x9b5d2ffb libsystem_secinit.dylib (18) <3CBA3BD3-8BA2-358D-BD1A-A1C3DF5D84E6> /usr/lib/system/libsystem_secinit.dylib

0x9b5d3000 - 0x9b5f0fff libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib

0x9b5f1000 - 0x9b68bfff com.apple.ColorSync (4.9.0 - 4.9.0) <E3442A3A-181A-3C39-86D5-89292AF8115F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync

0x9b68c000 - 0x9c2b8fff com.apple.AppKit (6.9 - 1347.57) <2E995EB6-3DB5-3FE0-B140-3E7563903322> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

0x9c2b9000 - 0x9c32ffff com.apple.securityfoundation (6.0 - 55126) <2DB5BDF8-FB04-317B-9A7F-9AC8733947BF> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

0x9c330000 - 0x9c373fff libGLU.dylib (11.1.2) <D044C93B-4FCF-378E-9CD4-50E2EBA17EF0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

0x9c374000 - 0x9c380fff com.apple.CrashReporterSupport (10.10 - 631) <456980E6-2F31-321B-B35D-CA54B88C6F1C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport

0x9c381000 - 0x9c383fff libCVMSPluginSupport.dylib (11.1.2) <2C725DC9-0773-3637-B905-7A8B2001192F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib

0x9c384000 - 0x9c384fff com.apple.Accelerate (1.10 - Accelerate 1.10) <C2367B5B-AE20-3084-A864-104743BE478E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

0x9c385000 - 0x9c3f8ffb com.apple.framework.CoreWLAN (5.0 - 500.35.2) <8D5F7007-D938-3A4D-841A-647D272D2DB6> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN

0x9c3f9000 - 0x9c46fff7 com.apple.SearchKit (1.4.0 - 1.4.0) <3693A221-B615-37D4-9FB1-F5F6CC7EE1A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit

External Modification Summary:

Calls made by other processes targeting this process:

task_for_pid: 295

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: 103899

thread_create: 0

thread_set_state: 0

VM Region Summary:

ReadOnly portion of Libraries: Total=216.9M resident=59.1M(27%) swapped_out_or_unallocated=157.8M(73%)

Writable regions: Total=3.3G written=84.7M(3%) resident=2.1G(64%) swapped_out=16K(0%) unallocated=1.2G(36%)

REGION TYPE VIRTUAL

=========== =======

CG backing stores 14.5M

CG image 88K

CG raster data 24.7M

CG shared images 336K

CoreAnimation 16K

CoreUI image data 80K

Foundation 4K

IOKit 1.3G

Kernel Alloc Once 4K

MALLOC 1.4G

MALLOC (admin) 48K

Memory Tag 242 12K

OpenCL 16K

OpenGL GLSL 128K

Stack 79.9M

VM_ALLOCATE 603.5M

VM_ALLOCATE (reserved) 4K reserved VM address space (unallocated)

__DATA 15.1M

__GLSLBUILTINS 2588K

__IMAGE 528K

__LINKEDIT 49.1M

__OBJC 2504K

__TEXT 167.8M

__UNICODE 552K

mapped file 130.1M

shared memory 68K

=========== =======

TOTAL 3.7G

TOTAL, minus reserved VM space 3.7G

Model: iMac14,2, BootROM IM142.0118.B09, 4 processors, Intel Core i7, 3.5 GHz, 8 GB, SMC 2.15f7

Graphics: NVIDIA GeForce GTX 780M, NVIDIA GeForce GTX 780M, PCIe, 4096 MB

Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46

Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46

AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (7.15.166.24.3)

Bluetooth: Version 4.3.4f4 15601, 3 services, 27 devices, 1 incoming serial ports

Network Service: Wi-Fi, AirPort, en1

Serial ATA Device: APPLE SSD SD0128F, 121,33 GB

Serial ATA Device: APPLE HDD ST1000DM003, 1 TB

USB Device: BRCM20702 Hub

USB Device: Bluetooth USB Host Controller

USB Device: FaceTime HD Camera (Built-in)

USB Device: Keyboard Hub

USB Device: Apple Keyboard

USB Device: G9 Laser Mouse

USB Device: Wireless Controller

Thunderbolt Bus: iMac, Apple Inc., 23.10

Here the last lines of the KSP-Log. Before that there were a ton of kOS events, of course.

...

[LOG 22:28:56.044] kOS: FlightControl Unbinding

[LOG 22:28:56.044] kOS: FlightControl Unbound

[LOG 22:28:56.044] kOS: Execution Broken

[LOG 22:29:06.903] [PlanetariumCamera]: Focus: kOS_Launch_07

[LOG 22:29:13.129] Packing kOS_Launch_07 for orbit

[LOG 22:29:34.308] Vessel kOS_Launch_07 Debris was on-rails at 1.0 atm pressure and was destroyed.

Link to comment
Share on other sites

Hi there.

Another crash report. This time i was in Map view, orbiting around kerbin. Memory was somewhere around 2 GB. Because it crashed, i don't know exactly. The last time i checked the activity monitor it was at 1.96.

Mods: Kerbal Engineer and kOS

Process: KSP [5304]

Path: /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/MacOS/KSP

Identifier: unity.Squad.Kerbal Space Program

Version: Unity Player version 4.6.4f1 (4.6.4f1)

Code Type: X86 (Native)

Parent Process: ??? [1]

Responsible: KSP [5304]

User ID: 501

Date/Time: 2015-05-14 22:29:52.680 +0200

OS Version: Mac OS X 10.10.3 (14D136)

Report Version: 11

Anonymous UUID: C2F8D229-CD6D-B734-C647-2BE6C5747D79

Sleep/Wake UUID: 3C8613CA-983B-4810-B595-F161A0211834

Time Awake Since Boot: 93000 seconds

Time Since Wake: 19000 seconds

Crashed Thread: 0 MainThrd Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGABRT)

Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:

-->

__TEXT 0000000000001000-0000000000b80000 [ 11.5M] r-x/rwx SM=COW /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/MacOS/KSP

Application Specific Information:

abort() called

Thread 0 Crashed:: MainThrd Dispatch queue: com.apple.main-thread

0 libsystem_kernel.dylib 0x922aa69a __pthread_kill + 10

1 libsystem_pthread.dylib 0x96766f19 pthread_kill + 101

2 libsystem_c.dylib 0x90578eee abort + 156

3 libmono.0.dylib 0x0135c51d mono_handle_native_sigsegv + 881

4 libmono.0.dylib 0x01395c3a sigabrt_signal_handler + 99

5 libsystem_platform.dylib 0x9094703b _sigtramp + 43

6 ??? 0xffffffff 0 + 4294967295

7 libmono.0.dylib 0x01395bd7 sigusr1_signal_handler + 159

8 libsystem_c.dylib 0x90578eee abort + 156

9 unity.Squad.Kerbal Space Program 0x0034a822 HandleSignal(int, __siginfo*, void*) + 34

10 libmono.0.dylib 0x0139581a mono_chain_signal + 76

11 libmono.0.dylib 0x012dfae2 mono_sigsegv_signal_handler + 234

12 libsystem_platform.dylib 0x9094703b _sigtramp + 43

13 ??? 0xffffffff 0 + 4294967295

14 libmono.0.dylib 0x012df9f8 mono_sigill_signal_handler + 59

15 libRIP.A.dylib 0x92174c38 ripc_Initialize + 99

16 libRIP.A.dylib 0x92174521 __CGBitmapContextDelegateCreate + 77

17 com.apple.CoreGraphics 0x916cc8af bitmap_context_create + 125

18 com.apple.CoreGraphics 0x916cc325 CGBitmapContextCreateWithData + 201

19 com.apple.CoreGraphics 0x916cc254 CGBitmapContextCreate + 78

20 com.apple.CoreGraphics 0x917695aa CGSRegisterCursorWithImages + 419

21 com.apple.AppKit 0x9b7cfe3e -[NSCursor _reallySet] + 936

22 com.apple.AppKit 0x9b7cfa65 -[NSCursor set] + 235

23 unity.Squad.Kerbal Space Program 0x00674ee1 Cursors::ResetCursor() + 225

24 unity.Squad.Kerbal Space Program 0x0065e59f -[PlayerAppDelegate UpdatePlayer] + 63

25 com.apple.Foundation 0x91b6e6cf __NSFireTimer + 119

26 com.apple.CoreFoundation 0x97075006 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22

27 com.apple.CoreFoundation 0x97074ab4 __CFRunLoopDoTimer + 1316

28 com.apple.CoreFoundation 0x970f054f __CFRunLoopDoTimers + 351

29 com.apple.CoreFoundation 0x9702c531 __CFRunLoopRun + 2081

30 com.apple.CoreFoundation 0x9702baa6 CFRunLoopRunSpecific + 390

31 com.apple.CoreFoundation 0x9702b90b CFRunLoopRunInMode + 123

32 com.apple.HIToolbox 0x9689e8f8 RunCurrentEventLoopInMode + 262

33 com.apple.HIToolbox 0x9689e631 ReceiveNextEventCommon + 494

34 com.apple.HIToolbox 0x9689e42c _BlockUntilNextEventMatchingListInModeWithFilter + 99

35 com.apple.AppKit 0x9b725721 _DPSNextEvent + 742

36 com.apple.AppKit 0x9b724dc5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 350

37 com.apple.AppKit 0x9b71977c -[NSApplication run] + 907

38 com.apple.AppKit 0x9b68ebc0 NSApplicationMain + 2082

39 unity.Squad.Kerbal Space Program 0x0065e3ab PlayerMain(int, char const**) + 731

40 unity.Squad.Kerbal Space Program 0x00003095 start + 53

Thread 1:: Dispatch queue: com.apple.libdispatch-manager

0 libsystem_kernel.dylib 0x922ab8ce kevent64 + 10

1 libdispatch.dylib 0x9226d73f _dispatch_mgr_invoke + 245

2 libdispatch.dylib 0x9226d3a2 _dispatch_mgr_thread + 52

Thread 2:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 libmono.0.dylib 0x01480a55 mono_sem_wait + 33

2 libmono.0.dylib 0x013c6cc1 finalizer_thread + 219

3 libmono.0.dylib 0x014438f5 start_wrapper + 534

4 libmono.0.dylib 0x01477334 thread_start_routine + 265

5 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

6 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

7 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

8 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 3:: UnityLookForNewInputDevices

0 libsystem_kernel.dylib 0x922a49ce mach_msg_trap + 10

1 libsystem_kernel.dylib 0x922a3a70 mach_msg + 68

2 com.apple.CoreFoundation 0x9702cef6 __CFRunLoopServiceMachPort + 214

3 com.apple.CoreFoundation 0x9702c309 __CFRunLoopRun + 1529

4 com.apple.CoreFoundation 0x9702baa6 CFRunLoopRunSpecific + 390

5 com.apple.CoreFoundation 0x970ef5c1 CFRunLoopRun + 129

6 unity.Squad.Kerbal Space Program 0x006695e4 LookForNewDevices(void*) + 452

7 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

8 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

9 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

10 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 4:: UnityGfxDeviceWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003bb586 ThreadedStreamBuffer::HandleReadOverflow(unsigned int&, unsigned int&) + 118

4 unity.Squad.Kerbal Space Program 0x00699c40 GfxDeviceWorker::RunCommand(ThreadedStreamBuffer&) + 80

5 unity.Squad.Kerbal Space Program 0x00699abf GfxDeviceWorker::RunGfxDeviceWorker(void*) + 79

6 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

7 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

8 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

9 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 5:: UnityWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003b97c3 JobScheduler::WorkLoop(void*) + 99

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 6:: UnityWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003b97c3 JobScheduler::WorkLoop(void*) + 99

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 7:: UnityWorker

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x003b97c3 JobScheduler::WorkLoop(void*) + 99

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 8:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 unity.Squad.Kerbal Space Program 0x00060ac3 algThreadJobQueueThreadFunc + 35

2 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

3 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 9:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 unity.Squad.Kerbal Space Program 0x00060ac3 algThreadJobQueueThreadFunc + 35

2 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

3 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 10:

0 libsystem_kernel.dylib 0x922a4a0a semaphore_wait_trap + 10

1 unity.Squad.Kerbal Space Program 0x00060ac3 algThreadJobQueueThreadFunc + 35

2 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

3 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 11:: UnitySubstanceThread

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x00280e5b SubstanceSystem::ThreadMain(void*) + 59

4 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 12:: com.apple.audio.IOThread.client

0 libsystem_kernel.dylib 0x922a49ce mach_msg_trap + 10

1 libsystem_kernel.dylib 0x922a3a70 mach_msg + 68

2 com.apple.audio.CoreAudio 0x956a6bb0 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 142

3 com.apple.audio.CoreAudio 0x9569f6fe HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 72

4 com.apple.audio.CoreAudio 0x9569dc1e HALC_ProxyIOContext::IOWorkLoop() + 1148

5 com.apple.audio.CoreAudio 0x9569d67a HALC_ProxyIOContext::IOThreadEntry(void*) + 156

6 com.apple.audio.CoreAudio 0x956a9d09 ___ZN19HALC_ProxyIOContextC2Emj_block_invoke + 20

7 com.apple.audio.CoreAudio 0x9569d591 HALB_IOThread::Entry(void*) + 173

8 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

9 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

10 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 13:

0 libsystem_kernel.dylib 0x922aa8f6 __semwait_signal + 10

1 libsystem_c.dylib 0x90598c06 nanosleep$UNIX2003 + 218

2 libsystem_c.dylib 0x90598ab2 usleep$UNIX2003 + 60

3 unity.Squad.Kerbal Space Program 0x00a48b45 FMOD_OS_Time_Sleep(unsigned int) + 21

4 unity.Squad.Kerbal Space Program 0x00a2d031 FMOD::Thread::callback(void*) + 49

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 14:: CVDisplayLink

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 com.apple.CoreVideo 0x956f97ef CVDisplayLink::runIOThread() + 927

4 com.apple.CoreVideo 0x956f9439 startIOThread(void*) + 159

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 15:: UnityPreload

0 libsystem_kernel.dylib 0x922a4a22 semaphore_timedwait_trap + 10

1 com.apple.CoreServices.CarbonCore 0x952afd28 MPWaitOnSemaphore + 120

2 unity.Squad.Kerbal Space Program 0x00675482 PlatformSemaphore::WaitForSignal() + 34

3 unity.Squad.Kerbal Space Program 0x002f3ec9 PreloadManager::Run() + 169

4 unity.Squad.Kerbal Space Program 0x002f3e11 PreloadManager::Run(void*) + 17

5 unity.Squad.Kerbal Space Program 0x003ba491 Thread::RunThreadWrapper(void*) + 65

6 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

7 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

8 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 16:

0 libsystem_kernel.dylib 0x922aa8f6 __semwait_signal + 10

1 libsystem_c.dylib 0x90598c06 nanosleep$UNIX2003 + 218

2 libsystem_c.dylib 0x90598ab2 usleep$UNIX2003 + 60

3 unity.Squad.Kerbal Space Program 0x00a48b45 FMOD_OS_Time_Sleep(unsigned int) + 21

4 unity.Squad.Kerbal Space Program 0x00a2d031 FMOD::Thread::callback(void*) + 49

5 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

6 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

7 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 17:

0 libsystem_kernel.dylib 0x922a49ce mach_msg_trap + 10

1 libsystem_kernel.dylib 0x922a3a70 mach_msg + 68

2 com.apple.CoreFoundation 0x9702cef6 __CFRunLoopServiceMachPort + 214

3 com.apple.CoreFoundation 0x9702c309 __CFRunLoopRun + 1529

4 com.apple.CoreFoundation 0x9702baa6 CFRunLoopRunSpecific + 390

5 com.apple.CoreFoundation 0x9702b90b CFRunLoopRunInMode + 123

6 com.apple.AppKit 0x9b7f4ea0 _NSEventThread + 283

7 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

8 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

9 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 18:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 libmono.0.dylib 0x01465b22 _wapi_handle_timedwait_signal_handle + 455

4 libmono.0.dylib 0x01465bcd _wapi_handle_wait_signal_handle + 46

5 libmono.0.dylib 0x0147539d WaitForSingleObjectEx + 569

6 libmono.0.dylib 0x0144dde8 async_invoke_thread + 690

7 libmono.0.dylib 0x014438f5 start_wrapper + 534

8 libmono.0.dylib 0x01477334 thread_start_routine + 265

9 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

10 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

11 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

12 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 19:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 20:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 21:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 22:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 libmono.0.dylib 0x01465b22 _wapi_handle_timedwait_signal_handle + 455

4 libmono.0.dylib 0x01465bcd _wapi_handle_wait_signal_handle + 46

5 libmono.0.dylib 0x0147539d WaitForSingleObjectEx + 569

6 libmono.0.dylib 0x0144dde8 async_invoke_thread + 690

7 libmono.0.dylib 0x014438f5 start_wrapper + 534

8 libmono.0.dylib 0x01477334 thread_start_routine + 265

9 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

10 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

11 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

12 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 23:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 24:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x9676920c pthread_cond_timedwait$UNIX2003 + 71

3 libmono.0.dylib 0x01465afa _wapi_handle_timedwait_signal_handle + 415

4 libmono.0.dylib 0x014753bb WaitForSingleObjectEx + 599

5 libmono.0.dylib 0x0144dd27 async_invoke_thread + 497

6 libmono.0.dylib 0x014438f5 start_wrapper + 534

7 libmono.0.dylib 0x01477334 thread_start_routine + 265

8 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

9 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

10 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

11 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 25:

0 libsystem_kernel.dylib 0x922aa512 __psynch_cvwait + 10

1 libsystem_pthread.dylib 0x96765a4a _pthread_cond_wait + 726

2 libsystem_pthread.dylib 0x967691c0 pthread_cond_wait$UNIX2003 + 71

3 libmono.0.dylib 0x01465b22 _wapi_handle_timedwait_signal_handle + 455

4 libmono.0.dylib 0x01465bcd _wapi_handle_wait_signal_handle + 46

5 libmono.0.dylib 0x0147539d WaitForSingleObjectEx + 569

6 libmono.0.dylib 0x0144dde8 async_invoke_thread + 690

7 libmono.0.dylib 0x014438f5 start_wrapper + 534

8 libmono.0.dylib 0x01477334 thread_start_routine + 265

9 libmono.0.dylib 0x0149d2b1 GC_start_routine + 108

10 libsystem_pthread.dylib 0x96764e13 _pthread_body + 138

11 libsystem_pthread.dylib 0x96764d89 _pthread_start + 162

12 libsystem_pthread.dylib 0x96762e52 thread_start + 34

Thread 0 crashed with X86 Thread State (32-bit):

eax: 0x00000000 ebx: 0x0135c1c3 ecx: 0xbfffb6bc edx: 0x00000000

edi: 0xa09941d4 esi: 0x00000006 ebp: 0xbfffb6d8 esp: 0xbfffb6bc

ss: 0x00000023 efl: 0x00000206 eip: 0x922aa69a cs: 0x0000000b

ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f

cr2: 0xa09941e0

Logical CPU: 0

Error Code: 0x00080148

Trap Number: 132

Binary Images:

0x1000 - 0xb7ffff +unity.Squad.Kerbal Space Program (Unity Player version 4.6.4f1 - 4.6.4f1) <8A005382-F6E0-3C56-BD27-4D5E085F19AC> /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/MacOS/KSP

0x128b000 - 0x12b1ffb +gameoverlayrenderer.dylib (1) <648088B6-2241-34D1-B910-F064C3EBBB3D> /Applications/Steam.app/Contents/MacOS/gameoverlayrenderer.dylib

0x12d3000 - 0x12d4ffb +steamloader.dylib (0) <7D581E42-6109-3883-8EE0-0C8160E5034A> /Applications/Steam.app/Contents/MacOS/steamloader.dylib

0x12d7000 - 0x1550fff +libmono.0.dylib (1) <D0D1C4F2-7018-3074-B5D7-3A6B08478766> /Users/USER/Library/Application Support/Steam/*/KSP.app/Contents/Frameworks/MonoEmbedRuntime/osx/libmono.0.dylib

0x8ff1000 - 0x8ff1ffb +cl_kernels (???) <5ABF635C-9B2C-40B3-957B-374C3C190E04> cl_kernels

0x8ff5000 - 0x8ff5ffb +cl_kernels (???) <F61D0815-678B-42BB-AE00-17B1C43960A5> cl_kernels

0xa702000 - 0xa74ffff com.apple.CloudDocs (1.0 - 321.6) <EF208D9F-9E6C-3FF9-AC82-3C2B4EBFAB89> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs

0xae2d000 - 0xaf18ff7 unorm8_bgra.dylib (2.4.5) <8F181889-D219-3292-B6C0-F6607D1924B0> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib

0xc675000 - 0xc681ff7 com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <D4293D14-F278-3B83-943D-EE12FA8A7F1E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib

0x10e58000 - 0x10e5cfff com.apple.audio.AppleHDAHALPlugIn (272.18 - 272.18) <FCD052AE-05F8-39C1-A378-F10B15F589E6> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn

0x12802000 - 0x12a58ffb com.apple.audio.units.Components (1.12 - 1.12) <CDBD7615-8B56-3CA5-AA0A-8BB4CCDD11B3> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio

0x48000000 - 0x488cbfff com.apple.GeForceGLDriver (10.2.7 - 10.0.2) <F017D4B6-4C3F-3368-99CE-FB81CEC0BBA3> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver

0x8fe7a000 - 0x8feade03 dyld (353.2.1) <06B1254D-9BB9-327C-BA15-8F18FFF97586> /usr/lib/dyld

0x90008000 - 0x90010ff7 libCGCMS.A.dylib (779.11) <EFC325D4-B616-3739-BAB6-D9C8B74F102F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib

0x90011000 - 0x90024fff libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib

0x90025000 - 0x90099fff com.apple.Heimdal (4.0 - 2.0) <0082F991-F391-31A6-915C-1FCB0AD004AC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal

0x9009a000 - 0x900e1ff3 com.apple.AppleJPEG (1.0 - 1) <677BE130-F5AB-36F4-A51A-1FF20FC0085A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG

0x900e2000 - 0x902a7fff com.apple.QuartzCore (1.10 - 361.18) <C2F1A85F-EA5E-3B73-81A2-06E3078202BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

0x902a8000 - 0x902f6ff7 libcurl.4.dylib (83.1.2) <50E14C55-B150-39E1-BA2C-B0658D38E580> /usr/lib/libcurl.4.dylib

0x902f7000 - 0x902f7fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <F968D12F-F59D-3148-951D-76735C3C1B57> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib

0x902f8000 - 0x9031eff3 libxpc.dylib (559.20.9) <15931AC6-7282-332D-9A44-6CFF84AC63AF> /usr/lib/system/libxpc.dylib

0x9031f000 - 0x9031ffff libkeymgr.dylib (28) <06DDCEF8-EB84-3F68-9E19-FD1A12B764FD> /usr/lib/system/libkeymgr.dylib

0x90370000 - 0x9038fff7 com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) <9265A1BE-FA6F-38C7-BDFB-FA05EEC683CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport

0x90390000 - 0x90436fff com.apple.Metadata (10.7.0 - 917.35) <3A9CD210-E9CC-3C1C-A72F-278F0694C1B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata

0x90437000 - 0x904d7fff com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD

0x904d8000 - 0x904eaff7 libsasl2.2.dylib (194.1) <34CB75C7-09BE-3319-BF7E-D4E56495F07A> /usr/lib/libsasl2.2.dylib

0x904eb000 - 0x90519ff7 libarchive.2.dylib (30) <8758D35F-ADF8-30F6-8EB2-9B852876EAC8> /usr/lib/libarchive.2.dylib

0x9051a000 - 0x905affff libsystem_c.dylib (1044.10.1) <9804163C-4DEC-3B94-9854-00248E44554F> /usr/lib/system/libsystem_c.dylib

0x905b0000 - 0x9062dff3 com.apple.framework.IOKit (2.0.2 - 1050.20.2) <84299E45-C5F3-365F-AC1B-0EAFF8057112> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

0x908b4000 - 0x908c5fff libsystem_coretls.dylib (35.20.2) <3688680D-90B5-373F-9E0D-46809E98B023> /usr/lib/system/libsystem_coretls.dylib

0x908c6000 - 0x908d4ff7 libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib

0x908d5000 - 0x90908fff com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <709E9F1B-D266-399B-9A4B-3785BBF64E01> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal

0x90909000 - 0x90932fff libsystem_info.dylib (459.20.1) <91DEA2CC-26A7-32CD-ABC5-0B2754874E38> /usr/lib/system/libsystem_info.dylib

0x90933000 - 0x9093cfff libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib

0x9093d000 - 0x90941ffb com.apple.IOSurface (97.4 - 97.4) <FD6AD351-BD60-337C-8D3D-42CDA7EE137C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

0x90942000 - 0x90948ff3 libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib

0x90949000 - 0x90976fff com.apple.ProtectedCloudStorage (1.0 - 1) <1CF781F8-1210-3B77-964B-D85F98B90681> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage

0x90977000 - 0x9097ffeb libcldcpuengine.dylib (2.4.5) <DF8CD84D-565E-370D-AC80-7D43E19B7E42> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib

0x90980000 - 0x90981fff liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib

0x90982000 - 0x9099bfff com.apple.Kerberos (3.0 - 1) <92735F11-CF1C-3FA6-8682-9A30AC9E2651> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

0x9099c000 - 0x90a67fff com.apple.DiscRecording (9.0 - 9000.4.2) <8E19F180-3D32-3C7A-8E73-272F2955D9A8> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording

0x90a68000 - 0x91375ffb libclh.dylib (4.0.3 - 4.0.3) <757D7708-7520-31EB-8950-3373FB596E62> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib

0x91376000 - 0x91526ff7 libGLProgrammability.dylib (11.1.2) <66618525-9A42-3C2F-9D4D-85E3FE883B88> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib

0x91527000 - 0x916b6ff3 libsqlite3.dylib (168) <C3F78985-C19B-3320-9F71-543969632128> /usr/lib/libsqlite3.dylib

0x916b7000 - 0x916b8fff com.apple.TrustEvaluationAgent (2.0 - 25) <28BBD931-EF7C-3753-B50E-6568F4075086> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent

0x916b9000 - 0x91ab0fff com.apple.CoreGraphics (1.600.0 - 779.11) <C335E1BE-B524-3EE8-969F-329BE9739CC4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

0x91ab1000 - 0x91b1dff3 com.apple.datadetectorscore (6.0 - 396.1.1) <A1ADB604-689E-3B00-BCB2-1B6662644BBD> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore

0x91b1e000 - 0x91e7fff3 com.apple.Foundation (6.9 - 1153.20) <B2539D54-EC35-3388-82C7-B01BB225A804> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

0x91e80000 - 0x91e9fff7 com.apple.GenerationalStorage (2.0 - 209.11) <34CF76B2-8052-359D-816D-092608FB6919> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage

0x91faf000 - 0x91fb8fff libGFXShared.dylib (11.1.2) <C67D9D93-6172-3AD6-BBB2-A18C9EC94570> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

0x91fb9000 - 0x9200dfff com.apple.HIServices (1.22 - 522.1) <E46DFA95-A419-32CD-AD1F-C5839F9CF923> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices

0x9200e000 - 0x9201dffb libxar.1.dylib (255) <4FF7DB6F-3232-302F-94BC-F1188F78AF25> /usr/lib/libxar.1.dylib

0x9201e000 - 0x9205effb libGLImage.dylib (11.1.2) <9BAF083D-12EF-3CD9-A875-191B1A3CC687> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

0x920ff000 - 0x9210bff7 libkxld.dylib (2782.20.48) <A318FD58-B9BA-3548-A8C9-116DB33719A5> /usr/lib/system/libkxld.dylib

0x9210c000 - 0x92123ff3 libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib

0x92124000 - 0x92126fff com.apple.loginsupport (1.0 - 1) <BA8EEAD0-8E97-3219-949B-50AE67F8869E> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport

0x92127000 - 0x9214dffb libPng.dylib (1237) <7EA0DEBE-4000-39D4-89E5-17F655BA317E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

0x9214e000 - 0x92172ffb com.apple.framework.Apple80211 (10.3 - 1030.71.6) <84F7040E-713D-3B0E-8397-7CE0C377C52A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211

0x92173000 - 0x9219cfff libRIP.A.dylib (779.11) <4BD501EF-1671-3165-BD7A-CF227F4BD690> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib

0x9219d000 - 0x921a4fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition

0x921a5000 - 0x92232ff3 com.apple.PerformanceAnalysis (1.0 - 1) <AADDDFC1-B4F3-311A-94EF-4D8EAFC2E2C7> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis

0x92233000 - 0x92233fff com.apple.Carbon (154 - 157) <CA90E930-DE59-3AD9-B158-3A940BA1FA8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

0x92269000 - 0x92290fff libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib

0x92291000 - 0x922b0fff libsystem_kernel.dylib (2782.20.48) <D1D17CE0-1D1D-3243-9E9D-78C70F19B0ED> /usr/lib/system/libsystem_kernel.dylib

0x922b1000 - 0x92360ffb com.apple.Bluetooth (4.3.4 - 4.3.4f4) <90D495A0-431F-363B-8818-230CB096D6E1> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

0x92361000 - 0x92366ff7 libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib

0x92367000 - 0x9236ffff com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <FDCAA783-356F-3CA4-B960-16555CD7E34A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents

0x92370000 - 0x9251effb GLEngine (11.1.2) <E08E5A1F-548F-3334-B181-0848981F43A9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine

0x92523000 - 0x92731ff7 com.apple.CFNetwork (720.3.13 - 720.3.13) <2593580E-5547-37C7-A99A-9D1B086C8B69> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork

0x92732000 - 0x9276ffff libsystem_network.dylib (412.20.3) <039F7709-8BFA-3299-8FD7-168145568642> /usr/lib/system/libsystem_network.dylib

0x92770000 - 0x927aaff7 com.apple.DebugSymbols (115 - 115) <D01FFA10-1734-31C5-B5A1-9CB61463FC15> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols

0x927ab000 - 0x927c2ffb com.apple.AppContainer (4.0 - 238.20.2) <0A9A3DD3-2D64-3548-8374-96FCE828D151> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer

0x927c3000 - 0x927c5ffb libRadiance.dylib (1237) <A9D5C5E7-8D9E-308A-BA4F-20491E3F15C4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib

0x927c6000 - 0x927ccff7 com.apple.MediaAccessibility (1.0 - 61) <81E9530E-882C-313C-A4D5-2F43EB569E4F> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility

0x927cd000 - 0x927cfff3 com.apple.EFILogin (2.0 - 2) <00F6D57F-5B4F-373E-BBFF-D19E1E7F87E6> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin

0x927d0000 - 0x927dcff7 libcsfde.dylib (471.20.7) <95CB28B6-A722-3660-AD1B-07A7C0B8C74A> /usr/lib/libcsfde.dylib

0x927dd000 - 0x92836ff3 libAVFAudio.dylib (118.6) <D91F498D-AF1E-368B-9DCB-CDA3AAA0E6CD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib

0x92837000 - 0x92840ff7 libsystem_notify.dylib (133.1.1) <B8503E99-214B-3AC3-A7CA-CC837ABD7B25> /usr/lib/system/libsystem_notify.dylib

0x92841000 - 0x928c0fff com.apple.SystemConfiguration (1.14 - 1.14) <6081992E-6825-3F69-AACF-70ABFA4CE379> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

0x928c1000 - 0x928c3fff libsystem_sandbox.dylib (358.20.5) <FA3A0729-6839-38AC-B365-5E89A125F091> /usr/lib/system/libsystem_sandbox.dylib

0x928c4000 - 0x92bd8fef com.apple.CoreAUC (211.1.0 - 211.1.0) <4ECEBB32-FAA9-357E-BD7D-039E2633AAD5> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC

0x92bd9000 - 0x92bf8ffb libresolv.9.dylib (57) <C2C3810A-A45E-3375-B41D-6E1BECE1BA3C> /usr/lib/libresolv.9.dylib

0x92bf9000 - 0x92c05ff3 libGPUSupportMercury.dylib (11.1.2) <4D408B6F-74BB-3367-A4B8-086BA2D1C3F0> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib

0x92c06000 - 0x92c7dfff com.apple.ApplicationServices.ATS (360 - 375.2) <A5CA2D71-673F-3FD8-B515-DAB1B3CC52C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS

0x92c81000 - 0x931e1ff3 com.apple.MediaToolbox (1.0 - 1562.235) <44C382D2-F7B2-312A-B6CC-AD27D0F17011> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox

0x931e2000 - 0x932f8ff3 com.apple.desktopservices (1.9.3 - 1.9.3) <544FDA55-063A-3787-A55A-A54290E4BE6E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv

0x9332b000 - 0x9332fffb libcache.dylib (69) <55501A00-AF64-3554-8F46-8D5AFEDEC332> /usr/lib/system/libcache.dylib

0x93330000 - 0x9339bff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi

0x9339c000 - 0x933a1ff7 libcompiler_rt.dylib (35) <6630682F-AB76-3E55-BE51-0A3E61B6CFC2> /usr/lib/system/libcompiler_rt.dylib

0x933a2000 - 0x93429fff com.apple.CoreServices.OSServices (640.4 - 640.4) <6ABC3CCE-5A4E-3CB2-AA12-3FFAB27D835A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices

0x9342a000 - 0x9342efff com.apple.IOAccelerator (156.14 - 156.14) <7A7AE17B-D677-3348-8AC3-B6F7BF36595E> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator

0x94d6d000 - 0x94dbefff com.apple.opencl (2.4.2 - 2.4.2) <0751975F-97E4-3271-BA93-2FC7A5FDB940> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

0x94dbf000 - 0x94debfff com.apple.ChunkingLibrary (2.1 - 163.6) <D5446A27-C51B-36D7-A4A1-3222A87F6F48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary

0x94dec000 - 0x94decfff libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib

0x94ded000 - 0x94e0affb com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity

0x94e0b000 - 0x94e3dffb com.apple.GSS (4.0 - 2.0) <2E9B0C48-962E-3CAB-ABCE-0A16CFCEF53E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS

0x950d8000 - 0x950deff7 libsystem_networkextension.dylib (167.1.10) <FC20E3AD-A53D-3346-AC71-829E82832AE8> /usr/lib/system/libsystem_networkextension.dylib

0x950df000 - 0x950e7ff7 com.apple.icloud.FindMyDevice (1.0 - 1) <E6C21417-C63A-3CD7-9329-205057417AC1> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice

0x950e8000 - 0x951d2fff libcrypto.0.9.8.dylib (52.20.2) <3BE03EE0-9DAE-395D-8292-0371FB21EE3F> /usr/lib/libcrypto.0.9.8.dylib

0x951d3000 - 0x951d3fff libOpenScriptingUtil.dylib (162.1) <EDDD4BA8-6212-3437-8CFF-117724C12A4E> /usr/lib/libOpenScriptingUtil.dylib

0x951d4000 - 0x9521dffb libFontRegistry.dylib (134.1) <6CF6177B-D5D6-3E7B-88BC-BE833D55018C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib

0x9521e000 - 0x9551cffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <ABEA5906-26AE-308F-B078-5944ABDF94DF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore

0x9551d000 - 0x95525ffb com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

0x95526000 - 0x95528fff libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib

0x95529000 - 0x95535ff3 libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib

0x95536000 - 0x95570fff com.apple.AirPlaySupport (2.0 - 215.18) <62CFE5FC-293F-36C8-9371-243892E55D73> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport

0x95571000 - 0x955daff7 libcorecrypto.dylib (233.1.2) <F188C1A7-E88F-3EC5-A6AA-22C02E3F0C93> /usr/lib/system/libcorecrypto.dylib

0x955db000 - 0x9561bfff com.apple.Symbolication (1.4 - 56045) <BE1C4846-DA11-365D-9B46-3FF130401839> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication

0x95670000 - 0x9568aff7 liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib

0x9568b000 - 0x956e0ff3 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <2AF304F7-5DA4-3035-9E15-070F16700789> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

0x956e2000 - 0x956f6fff com.apple.ImageCapture (9.0 - 9.0) <4B84B5D5-A5F3-3B35-93CE-568A73486B92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture

0x956f7000 - 0x95726fff com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

0x95727000 - 0x95818ffb libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib

0x95819000 - 0x95834ff3 com.apple.openscripting (1.4 - 162.1) <CC32543F-0BEA-3022-AF35-5149C50DE902> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

0x95835000 - 0x95845ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis

0x95846000 - 0x95846fff com.apple.CoreServices (62 - 62) <08A581EC-2E8B-30CF-B555-64171C8FE5EE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

0x95847000 - 0x9584afff libextension.dylib (55.2) <BE3B5B43-A1BB-3BB6-9CD9-946BC61241FC> /usr/lib/libextension.dylib

0x9584b000 - 0x95854fff com.apple.AppleSRP (5.0 - 1) <41C48FA8-C249-3800-A551-7F4AFA3E723F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP

0x95855000 - 0x95c90feb com.apple.vImage (8.0 - 8.0) <56F6B317-9D70-3DC5-9868-BB6D7CB6E55D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage

0x95c91000 - 0x95c9afff com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

0x95c9b000 - 0x95f32fff com.apple.CoreData (111 - 526.3) <93295B9D-6C48-3919-8B9C-A4291D3522CE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

0x95f33000 - 0x95f56fff libJPEG.dylib (1237) <6838FF44-9DF6-349E-AFB4-182F80C2DA79> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

0x95f59000 - 0x95f5cfff libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib

0x95f5d000 - 0x95f64ff3 libunwind.dylib (35.3) <29D9343F-9A0A-3535-B0AE-E7CC761D95EE> /usr/lib/system/libunwind.dylib

0x95f65000 - 0x95f7cfff libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib

0x95f7d000 - 0x95f7fff7 libquarantine.dylib (76.20.1) <8694AC5A-7359-3CC6-8E93-CABFCC919D4B> /usr/lib/system/libquarantine.dylib

0x95f80000 - 0x95f85fff com.apple.print.framework.Print (10.0 - 265) <7C3984BB-8337-3B90-A414-17C181A45744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print

0x95f86000 - 0x95f86fff com.apple.audio.units.AudioUnit (1.12 - 1.12) <CFB6243A-1613-3468-88CE-1DDBEC1E6984> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

0x95f87000 - 0x96094fe3 libvDSP.dylib (516) <53F7A960-01E1-3B79-A7FD-67BD19471420> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib

0x96095000 - 0x9609cfff com.apple.XPCService (2.0 - 1) <9A59D63D-446A-33A4-BB21-56E42417DA93> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService

0x9609d000 - 0x960a8ff7 com.apple.AppSandbox (4.0 - 238.20.2) <E81603D8-FA25-3667-999C-E5A9DF790CB4> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox

0x960a9000 - 0x960b4ff7 com.apple.NetAuth (5.2 - 5.2) <3E650FB0-5EB5-3807-8B71-8FAF64D6A0FC> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth

0x960b5000 - 0x96108fff libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib

0x96109000 - 0x96110fff com.apple.agl (3.3.0 - AGL-3.3.0) <8822D220-5EA7-3A56-9EA1-5CE4861EB636> /System/Library/Frameworks/AGL.framework/Versions/A/AGL

0x96129000 - 0x96137ff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <CDD0CAA1-DF2E-3FE1-AEE4-4C0823E6FD5C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore

0x96138000 - 0x9618dff7 com.apple.htmlrendering (77 - 1.1.4) <B85A63B9-C9DD-3ECC-B5DC-E12533C7FDF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering

0x9621d000 - 0x96250fe3 libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib

0x96251000 - 0x96254fff libdyld.dylib (353.2.1) <30CE0D0E-7E82-3CD5-92E7-9C1D6AD3327C> /usr/lib/system/libdyld.dylib

0x96255000 - 0x96259fff libCoreVMClient.dylib (79.1) <3DB52AB1-D41E-3AC9-A355-1B6DCEDB4DFD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

0x9625a000 - 0x96346fe7 libvMisc.dylib (516) <C784D56E-112E-359F-848B-3419E0572EB4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib

0x96347000 - 0x96348fff libsystem_blocks.dylib (65) <5D98F022-E863-31D4-8ADE-D53B2AE0D331> /usr/lib/system/libsystem_blocks.dylib

0x96349000 - 0x963dbfff com.apple.CoreSymbolication (3.1 - 57020.1) <7A6A6AD6-E46A-334F-ACC4-41B179505EC9> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication

0x963dc000 - 0x9675fff7 com.apple.VideoToolbox (1.0 - 1562.235) <52EE731A-400A-3670-8904-03636C41B4CD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox

0x96760000 - 0x96761fff libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib

0x96762000 - 0x9676afff libsystem_pthread.dylib (105.10.1) <4A229519-29A1-3ABF-8CEF-43BCE4ACDA06> /usr/lib/system/libsystem_pthread.dylib

0x9676b000 - 0x9686fff7 libJP2.dylib (1237) <3A85AB3C-AFC7-3761-A198-D6C7317E476A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

0x96870000 - 0x96c49ff3 com.apple.HIToolbox (2.1.1 - 758.7) <A7B81A48-6BB9-35EC-B128-D38AD4EC7802> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox

0x96c4a000 - 0x96c65ff7 com.apple.CFOpenDirectory (10.10 - 187) <44C81E98-710E-30EB-829D-7374B9339345> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory

0x96c74000 - 0x96c9aff7 com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices

0x96c9b000 - 0x96d48fff libcrypto.0.9.7.dylib (106) <19669D99-DC79-3715-BC3A-850016DDDD7F> /usr/lib/libcrypto.0.9.7.dylib

0x96d49000 - 0x96f3ffff libicucore.A.dylib (531.48) <A1002DA8-DAA9-30E8-95AE-1BF575AC5AB5> /usr/lib/libicucore.A.dylib

0x96f40000 - 0x96f6fff7 com.apple.DictionaryServices (1.2 - 229) <BC958000-7A7D-3C3A-B0FF-95734A35EB0A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices

0x96f70000 - 0x96f70fff liblaunch.dylib (559.20.9) <A0885899-CDE9-3688-8C3C-B583E24090E0> /usr/lib/system/liblaunch.dylib

0x96f71000 - 0x96f75fff libheimdal-asn1.dylib (398.10.1) <6F113AF8-F5AD-330B-B029-F7AF28A93F28> /usr/lib/libheimdal-asn1.dylib

0x96f76000 - 0x96fa0fff libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib

0x96fa1000 - 0x96fb4fff com.apple.Sharing (328.16 - 328.16) <57F64876-D785-3B35-91B9-B2800F800C37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing

0x96fb5000 - 0x97369ff7 com.apple.CoreFoundation (6.9 - 1153.18) <267B1002-C755-37B4-95CD-92358CF994B8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

0x97374000 - 0x97381ff3 com.apple.ProtocolBuffer (1 - 228.0.1) <B61B9562-CBDE-34E5-B19E-291A1D95D782> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer

0x97382000 - 0x97434fff libCoreStorage.dylib (471.20.7) <34D9A40A-97EB-3365-B809-13DA5BF569C6> /usr/lib/libCoreStorage.dylib

0x97435000 - 0x9748bfff libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib

0x9748c000 - 0x97490fff com.apple.CommonPanels (1.2.6 - 96) <955375E6-2416-38E1-AFC6-477827119329> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels

0x97491000 - 0x97493fff com.apple.securityhi (9.0 - 55006) <B87325C7-1F87-3D3C-874C-9DF59C8EBE1E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI

0x97494000 - 0x974effff com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling

0x974f0000 - 0x97516ff3 libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib

0x97517000 - 0x97530fff libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib

0x97531000 - 0x9756bfff com.apple.LDAPFramework (2.4.28 - 194.5) <E3E6B657-AA4C-3D9D-8EB2-ACAC1B62DDDE> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

0x9756c000 - 0x976b0ff7 com.apple.ImageIO.framework (3.3.0 - 1237) <314B3F6B-4DC5-31E9-BE67-032901676A34> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

0x976b1000 - 0x977a8ff7 libFontParser.dylib (134.2) <1CE9DA9E-FBF3-32E4-838D-455EA531F26E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib

0x977a9000 - 0x97a27ff3 com.apple.security (7.0 - 57031.20.26) <7E5439C5-752D-367F-A28A-AA34C7307981> /System/Library/Frameworks/Security.framework/Versions/A/Security

0x97a28000 - 0x97a9fff7 com.apple.CoreUtils (1.1 - 110.1) <1667BF42-48D3-3B3D-A9CF-0868178DD2EB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils

0x97aa0000 - 0x97d40ff7 com.apple.RawCamera.bundle (6.04 - 791) <0558A7ED-F642-34AC-944E-1FEE517C229D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

0x97eb7000 - 0x97f54fff com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

0x97f55000 - 0x97f5effb com.apple.CommonAuth (4.0 - 2.0) <FFE760A3-FEF7-3009-92E8-893ABB3BC91A> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth

0x97f5f000 - 0x98347ff7 libLAPACK.dylib (1128) <4E3D1289-2C98-3E53-BB8D-AD911357FF66> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib

0x98348000 - 0x9834affb libCGXType.A.dylib (779.11) <2B22C4C3-CF75-3909-B9A0-1B9A23028FBB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib

0x9834b000 - 0x983afff7 com.apple.AE (681.2 - 681.2) <E56D8304-3975-32E0-BBF2-611F04209C2B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE

0x986c7000 - 0x98707fff libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib

0x98708000 - 0x987b0ff7 com.apple.CoreMedia (1.0 - 1562.235) <BA4933F2-289D-354B-B3B7-451AAF9FBB96> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia

0x987b1000 - 0x987f0fff com.apple.NavigationServices (3.8 - 215.1) <46D8B66D-CB59-36F5-BD26-FD8309337BB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices

0x987f1000 - 0x987feff7 libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib

0x98e40000 - 0x98f30ff3 com.apple.DiskImagesFramework (10.10.1 - 396) <25716B90-E152-3666-92BB-FE543AEB6FA9> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

0x98f31000 - 0x9909dff3 com.apple.avfoundation (2.0 - 889.210) <C49EA877-535F-3E27-80B2-87AACA207F33> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation

0x9909e000 - 0x993f8ff7 libmecabra.dylib (666.7) <55A50B97-92D3-3DDC-8E3A-58BC5FFE5E3F> /usr/lib/libmecabra.dylib

0x993f9000 - 0x993fbfff libsystem_configuration.dylib (699.1.5) <CC818B5B-D6A6-3313-A0FD-6F781B24DAD4> /usr/lib/system/libsystem_configuration.dylib

0x993fc000 - 0x99403fff libMatch.1.dylib (24) <428CD037-5261-39A6-83EE-A7D9ABF446EB> /usr/lib/libMatch.1.dylib

0x99404000 - 0x99406fff com.apple.SecCodeWrapper (4.0 - 238.20.2) <E70AD7E3-F4A1-3315-ABD9-9FF5078E9EDD> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper

0x99407000 - 0x9940affb libutil.dylib (38) <B5A16C6B-A79E-3504-BDA6-64A063F6612D> /usr/lib/libutil.dylib

0x9940b000 - 0x9940efff com.apple.xpc.ServiceManagement (1.0 - 1) <D23A7F03-979D-3A78-B1F6-645D2EFEEF66> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement

0x9940f000 - 0x9941dff3 com.apple.opengl (11.1.2 - 11.1.2) <F252DF22-C5E2-3A47-ACB6-2B02D6164A47> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

0x9941e000 - 0x9947efff com.apple.AppleVAFramework (5.0.31 - 5.0.31) <2FFC7C07-CA18-3959-B8F6-F620025BCD86> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

0x9947f000 - 0x99492fff com.apple.CoreBluetooth (1.0 - 1) <153F2DDE-CCCF-3C63-AF70-2EA306DACDCD> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth

0x99493000 - 0x994a3fff libGL.dylib (11.1.2) <44DD250B-CB98-3FD1-BF5B-6AD85A68BF9A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

0x99e53000 - 0x99e59ff7 libsystem_trace.dylib (72.20.1) <5F23BE77-1C60-3859-B528-C6B3C184C95C> /usr/lib/system/libsystem_trace.dylib

0x99e5a000 - 0x99e67ff7 com.apple.OpenDirectory (10.10 - 187) <60A9481B-2191-35A2-AB7E-E48A2B49BF09> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

0x99e68000 - 0x99e94ffb libsandbox.1.dylib (358.20.5) <5AFB311B-D796-3851-BC5B-72EF603DB2B6> /usr/lib/libsandbox.1.dylib

0x99e95000 - 0x99e99ffb libGIF.dylib (1237) <F831EEB0-3193-32A7-914D-F77C7D5027E3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

0x99e9a000 - 0x99eedfff com.apple.CoreMediaIO (601.0 - 4760) <A3BA21A9-5841-3C98-BBE8-A945020745DF> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO

0x99eee000 - 0x99fb9fff com.apple.backup.framework (1.6.4 - 1.6.4) <75DC1CA0-5D18-3E8F-A8BC-D737FC9C55C4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

0x99fba000 - 0x99fc7ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <3771942E-13BB-30C0-9992-11EE637871DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis

0x99fc8000 - 0x9a0c9ff7 com.apple.LaunchServices (644.56 - 644.56) <CFF2C4B8-8111-3B9B-A6F7-E2AB33163238> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices

0x9a0ca000 - 0x9a4fdff3 com.apple.vision.FaceCore (3.1.6 - 3.1.6) <EF92C25B-3E33-379F-A862-75C2FCA8B386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

0x9a4fe000 - 0x9a6ed2ef libobjc.A.dylib (647) <7648C174-3098-3B26-AD20-490DBFFD5D4C> /usr/lib/libobjc.A.dylib

0x9a6ee000 - 0x9a9e0ff3 com.apple.CoreImage (10.3.4) <6A0E17E6-9F56-3450-8892-670A9C489C30> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage

0x9aa9b000 - 0x9aad7ff3 com.apple.RemoteViewServices (2.0 - 99) <2839C2F1-88DA-3843-87BF-441A374A8967> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices

0x9aad8000 - 0x9aae2ffb com.apple.audio.SoundManager (4.2 - 4.2) <4312D0A7-4B6F-3A1E-9A47-24C6E8C65E51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound

0x9aafc000 - 0x9aafcfff com.apple.Cocoa (6.8 - 21) <6AF80DDB-C28E-36FF-BC11-D7D561AC52A9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

0x9aafd000 - 0x9ab01ff3 com.apple.TCC (1.0 - 1) <EE0D6865-A6E0-3BF0-93F1-837C09AA7978> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC

0x9ab02000 - 0x9ac15fff com.apple.MediaControlSender (2.0 - 215.18) <D35B4B09-AE31-3028-ACEE-E86991772577> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender

0x9ac16000 - 0x9ad48fff com.apple.UIFoundation (1.0 - 1) <B5B0D178-E1F5-3625-9391-46495E35D540> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation

0x9ad49000 - 0x9ae5ffff com.apple.CoreText (352.0 - 454.6) <5F236E10-C911-3AAF-8BA6-2F0F68A87443> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText

0x9ae60000 - 0x9afd1ffb libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib

0x9afd2000 - 0x9b023fff libcups.2.dylib (408.2) <425E4328-ECA1-31EE-B2C4-0D67FB8848BE> /usr/lib/libcups.2.dylib

0x9b024000 - 0x9b025fff libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib

0x9b026000 - 0x9b02efff libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib

0x9b02f000 - 0x9b069fff com.apple.MediaKit (16 - 757.2) <C8A90BB1-86B8-3695-B098-DDEF9A44CDC9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

0x9b06a000 - 0x9b1f2ff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <CA1E6D99-F534-3D3B-9AA5-038E171AD0A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

0x9b1f3000 - 0x9b1f4fff libSystem.B.dylib (1213) <C45CC429-5DE4-3B01-8450-B3BD1AA03C3F> /usr/lib/libSystem.B.dylib

0x9b1f5000 - 0x9b252ff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <86895179-C54B-3D8A-B515-92DFA6315FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore

0x9b253000 - 0x9b2aeffb libTIFF.dylib (1237) <CEE13162-B2D3-3AA6-82A7-AA1A02E424DF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

0x9b2af000 - 0x9b2dcff7 GLRendererFloat (11.1.2) <F9E90ECE-FBBF-3F1A-BC97-EDDB152498C1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat

0x9b2dd000 - 0x9b2e0ff7 com.apple.help (1.3.3 - 46) <FDF183E4-3B95-3CBD-A390-2536C8E7E258> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help

0x9b2e1000 - 0x9b315ffb com.apple.frameworks.CoreDaemon (1.3 - 1.3) <F527DB82-0D3F-359E-979B-951DFF46D45C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon

0x9b316000 - 0x9b316fff com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

0x9b317000 - 0x9b40dff7 libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib

0x9b40e000 - 0x9b41ffff libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib

0x9b420000 - 0x9b54eff7 com.apple.coreui (2.1 - 308.6) <908A9C21-7AE9-3480-A858-2E4D928F661D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

0x9b54f000 - 0x9b571ff3 libssl.0.9.7.dylib (106) <E0174C8B-F4E3-3B8C-9F88-1D7B088DC155> /usr/lib/libssl.0.9.7.dylib

0x9b572000 - 0x9b5a5fff com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <103A5EA0-9B75-3B23-BE72-C4DD52744A6A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD

0x9b5d0000 - 0x9b5d2ffb libsystem_secinit.dylib (18) <3CBA3BD3-8BA2-358D-BD1A-A1C3DF5D84E6> /usr/lib/system/libsystem_secinit.dylib

0x9b5d3000 - 0x9b5f0fff libCRFSuite.dylib (34) <781A92EF-410E-39B2-953D-FEE12748D834> /usr/lib/libCRFSuite.dylib

0x9b5f1000 - 0x9b68bfff com.apple.ColorSync (4.9.0 - 4.9.0) <E3442A3A-181A-3C39-86D5-89292AF8115F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync

0x9b68c000 - 0x9c2b8fff com.apple.AppKit (6.9 - 1347.57) <2E995EB6-3DB5-3FE0-B140-3E7563903322> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

0x9c2b9000 - 0x9c32ffff com.apple.securityfoundation (6.0 - 55126) <2DB5BDF8-FB04-317B-9A7F-9AC8733947BF> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

0x9c330000 - 0x9c373fff libGLU.dylib (11.1.2) <D044C93B-4FCF-378E-9CD4-50E2EBA17EF0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

0x9c374000 - 0x9c380fff com.apple.CrashReporterSupport (10.10 - 631) <456980E6-2F31-321B-B35D-CA54B88C6F1C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport

0x9c381000 - 0x9c383fff libCVMSPluginSupport.dylib (11.1.2) <2C725DC9-0773-3637-B905-7A8B2001192F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib

0x9c384000 - 0x9c384fff com.apple.Accelerate (1.10 - Accelerate 1.10) <C2367B5B-AE20-3084-A864-104743BE478E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

0x9c385000 - 0x9c3f8ffb com.apple.framework.CoreWLAN (5.0 - 500.35.2) <8D5F7007-D938-3A4D-841A-647D272D2DB6> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN

0x9c3f9000 - 0x9c46fff7 com.apple.SearchKit (1.4.0 - 1.4.0) <3693A221-B615-37D4-9FB1-F5F6CC7EE1A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit

External Modification Summary:

Calls made by other processes targeting this process:

task_for_pid: 295

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: 103899

thread_create: 0

thread_set_state: 0

VM Region Summary:

ReadOnly portion of Libraries: Total=216.9M resident=59.1M(27%) swapped_out_or_unallocated=157.8M(73%)

Writable regions: Total=3.3G written=84.7M(3%) resident=2.1G(64%) swapped_out=16K(0%) unallocated=1.2G(36%)

REGION TYPE VIRTUAL

=========== =======

CG backing stores 14.5M

CG image 88K

CG raster data 24.7M

CG shared images 336K

CoreAnimation 16K

CoreUI image data 80K

Foundation 4K

IOKit 1.3G

Kernel Alloc Once 4K

MALLOC 1.4G

MALLOC (admin) 48K

Memory Tag 242 12K

OpenCL 16K

OpenGL GLSL 128K

Stack 79.9M

VM_ALLOCATE 603.5M

VM_ALLOCATE (reserved) 4K reserved VM address space (unallocated)

__DATA 15.1M

__GLSLBUILTINS 2588K

__IMAGE 528K

__LINKEDIT 49.1M

__OBJC 2504K

__TEXT 167.8M

__UNICODE 552K

mapped file 130.1M

shared memory 68K

=========== =======

TOTAL 3.7G

TOTAL, minus reserved VM space 3.7G

Model: iMac14,2, BootROM IM142.0118.B09, 4 processors, Intel Core i7, 3.5 GHz, 8 GB, SMC 2.15f7

Graphics: NVIDIA GeForce GTX 780M, NVIDIA GeForce GTX 780M, PCIe, 4096 MB

Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46

Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46

AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (7.15.166.24.3)

Bluetooth: Version 4.3.4f4 15601, 3 services, 27 devices, 1 incoming serial ports

Network Service: Wi-Fi, AirPort, en1

Serial ATA Device: APPLE SSD SD0128F, 121,33 GB

Serial ATA Device: APPLE HDD ST1000DM003, 1 TB

USB Device: BRCM20702 Hub

USB Device: Bluetooth USB Host Controller

USB Device: FaceTime HD Camera (Built-in)

USB Device: Keyboard Hub

USB Device: Apple Keyboard

USB Device: G9 Laser Mouse

USB Device: Wireless Controller

Thunderbolt Bus: iMac, Apple Inc., 23.10

Here the last lines of the KSP-Log. Before that there were a ton of kOS events, of course.

...

[LOG 22:28:56.044] kOS: FlightControl Unbinding

[LOG 22:28:56.044] kOS: FlightControl Unbound

[LOG 22:28:56.044] kOS: Execution Broken

[LOG 22:29:06.903] [PlanetariumCamera]: Focus: kOS_Launch_07

[LOG 22:29:13.129] Packing kOS_Launch_07 for orbit

[LOG 22:29:34.308] Vessel kOS_Launch_07 Debris was on-rails at 1.0 atm pressure and was destroyed.

Yeah, that's the same problem. It can manifest in ways other than an explicit "failed to allocate", depending on who did the allocation and wether they bothered to check the return value of malloc(). Most programmers don't. Your crashlog says the following:

TOTAL, minus reserved VM space 3.7G

Which means there is 3.7GB worth of virtual space allocated. The virtual space at this point is likely quite fragmented so malloc couldn't find a contiguous swath of memory to allocate whatever malloc requested, gave up and returned NULL. The programmer didn't check the return value, happily tried to dereference it and *crash*.

Interesting little tidbit in your crashlog as well:

Writable regions: Total=3.3G written=84.7M(3%) resident=2.1G(64%) swapped_out=16K(0%) unallocated=1.2G(36%)

There is 1.2GB of virtual space that has absolutely nothing backing it. The memory has never been used, so the OS never bothered to actually back it with physical memory (but it's still mapped into your process, so it's eating virtual space).

I did some more digging of my own (just to see if there was anything I could hack together that would relieve some of the virtual address space pressure), but it doesn't really look like there is anything being duplicated inside the address space. The IOKit shared memory segments that I referenced earlier are actually largely 2D textures. These end up mapped into VRAM (so, in video card RAM), and the KSP process. I am still a little confused about some of the larger shared memory mappings (There are several that are upwards of 10M, and one is +150M), but they're hard to identify with just Dtrace.

I'm just going to wait until KSP gets updated, as playing like this isn't fun anymore. Looking around the forums, the Windows port doesn't seem to fare any better than the Mac OS X one does as far as random crashes goes...

Link to comment
Share on other sites

Unfortunately I am having similar issues on OSX (MacBookPro retina, middle 2013)

After having changed the graphical settings, KSP keeps crashing. At the point that's not really playable. And that's so frustrating. The game is really engaging, despite the level of details on the graphical part (which isn't that great, honestly).

I'm not for pointless polemics, but it seems a pretty common issue. So I am surprised that's still unresolved.

Link to comment
Share on other sites

I was getting crashing just trying to open the Settings page. So I reinstalled from scratch and cleared all the leftover settings files and it still won't let me open the settings without crashing.

My bootcamp version works fine.

So frustrating.

Link to comment
Share on other sites

Im Having this problem too. I know that it is a memory issue (I've already reported many times), but it is so disappointing that squad sees this as a valid 1.0 release. This game still feels like its in beta.

Link to comment
Share on other sites

Same problem here.

Actually Squad seems to want to correct this problem while switching to unity 5.

Not because it will allow users to use more memory but they will have to read and redo a lot of there code while doing so. So they will be able to see what is wrong.

Also, unity 5 will have better compile function for recent computers.

So, i will try some of the tips shows here and wait, patiently for a major update... I hope.

Link to comment
Share on other sites

I was getting crashing just trying to open the Settings page. So I reinstalled from scratch and cleared all the leftover settings files and it still won't let me open the settings without crashing.

My bootcamp version works fine.

So frustrating.

My VMWare Fusion version (under Win7) runs stable, although the right mouse button doesn't work.

Link to comment
Share on other sites

they hope unity5 will fix a lot of the issues wich made the mac build unstable also if it would've been ram we most likely will get 64bit so the game will take advantage of the amount of ram you have.

the game never crashes on my old imac (system specs incoming!!!)

iMac 20-inch (half 2007)

osx yosemite version:10.10.3

Processor: 2,4 GHz Intel Core 2 Duo

RAM: 4 GB 667 MHz DDR2 SDRAM

Graphics card: ATI Radeon HD 2600 Pro 256MB

Display (built-in): 20-Inch (1680 x 1050)

Harddisk: 200 GB

yes it's really old and i can't play on max settings but i've got my textures on full res wich is nice.

Link to comment
Share on other sites

I might suggest putting this in the "Known Issues" thread. It seems like it's been known for a while, but it took some digging to find this thread.

I've been having much the same issues as all of those described in this thread. It also seems to get more likely the more flights I have in progress (which stands to reason given the apparent 3GB memory limit) to the point where the graphics start glitching from the outset with 6 satellites and a station in space...

Link to comment
Share on other sites

It'd help if we knew the cause or a workaround sportack, as unless I have missed something this is not happening for every OS X user and no one know why yet.

Though it does seem that this is affecting Yosemite users predominantly.

Link to comment
Share on other sites

The iMc I'm using is still on Mavericks. If I was careful I could get as long at 15 mins gametime before it locked up.

I'm back on 0.25 for now so apart from keeping an eye on this thread and the devnotes, I have no involvement with KSP 1 in any of it's iterations.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...